aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/interface-gtk/interface.c
diff options
context:
space:
mode:
authorRobin Haberkorn <rhaberkorn@fmsbw.de>2025-11-21 22:39:01 +0100
committerRobin Haberkorn <rhaberkorn@fmsbw.de>2025-11-21 22:39:01 +0100
commit4aaff7294131552be8c731e2f4d230106a1149f7 (patch)
tree77db87ec5da219bf1e5bd0e6970e0901cedd319e /src/interface-gtk/interface.c
parente06e7ab1ee41aeff9e29f43de47ac25eef474808 (diff)
fixed scrolling the command line after clicking in the popupHEADmaster-fmsbw-cimaster
We cannot rely on the central teco_cmdline_update() call per keypress in this case. The analogous call was removed in 4e6ddd6c329d56055a732c6344df019f0d997aaf, so this was a recent regression.
Diffstat (limited to 'src/interface-gtk/interface.c')
-rw-r--r--src/interface-gtk/interface.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/interface-gtk/interface.c b/src/interface-gtk/interface.c
index 98c7266..7aa9797 100644
--- a/src/interface-gtk/interface.c
+++ b/src/interface-gtk/interface.c
@@ -1466,6 +1466,7 @@ teco_interface_popup_clicked_cb(GtkWidget *popup, gchar *str, gulong len, gpoint
!machine->current->insert_completion_cb(machine, &insert, NULL))
return;
teco_interface_popup_clear();
+ teco_cmdline_update();
teco_interface_update(teco_interface_current_view != last_view);
}