changeset 18574:6b4f9cab88d6 gui-release

*octave-gui.cc: focus terminal after all other actions at startup (bug #41814)
author Torsten <ttl@justmail.de>
date Sat, 15 Mar 2014 21:17:19 +0100
parents 26d15a57f45b
children f57148641869
files libgui/src/octave-gui.cc
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/libgui/src/octave-gui.cc	Thu Feb 13 20:39:09 2014 +0100
+++ b/libgui/src/octave-gui.cc	Sat Mar 15 21:17:19 2014 +0100
@@ -182,13 +182,13 @@
 
       w.read_settings ();
 
-      w.focus_command_window ();
-
       // Connect signals for changes in visibility not before w
       // is shown.
 
       w.connect_visibility_changed ();
 
+      w.focus_command_window ();
+
       return application.exec ();
     }
   else