From 7be7220acb24ed2f4eb1ab83cb0bc5d833a89d54 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Fri, 6 Sep 2024 18:10:51 +0200 Subject: [PATCH] Revert "Fix that keeps the cursor hidden on aterm/Eterm when the terminal is resized." This reverts commit 4314bb955b36d2801340b5b4859a7d4c93794cde. I suppose after 20 years, this workaround is obsolete. --- src/screen_init.cxx | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/screen_init.cxx b/src/screen_init.cxx index 21c9e850..9014ef98 100644 --- a/src/screen_init.cxx +++ b/src/screen_init.cxx @@ -81,10 +81,6 @@ ScreenManager::OnResize() noexcept /* resize all screens */ current_page->second->Resize(layout.GetMainSize()); - /* ? - without this the cursor becomes visible with aterm & Eterm */ - curs_set(1); - curs_set(0); - SchedulePaint(); }