[gnome-commander] Fixed problem with stalled keyboard after ALT+1/2 with hidden device list



commit d5de0d941603b78126f72f0437bc6fde86a10fec
Author: Piotr Eljasiak <epiotr src gnome org>
Date:   Thu Nov 12 21:29:03 2009 +0100

    Fixed problem with stalled keyboard after ALT+1/2 with hidden device list

 NEWS                      |    1 +
 doc/C/gnome-commander.xml |    3 +++
 src/gnome-cmd-main-win.cc |    6 ++++--
 3 files changed, 8 insertions(+), 2 deletions(-)
---
diff --git a/NEWS b/NEWS
index 422adf2..eaa047a 100644
--- a/NEWS
+++ b/NEWS
@@ -20,6 +20,7 @@ gnome-commander 1.2.8.4
 Bug fixes:
  * Fixed Ubuntu problem #369818 (incorrect sorting by size in panel)
  * Fixed problem with not working keypad enter in copy/move dialog
+ * Fixed problem with stalled keyboard after ALT+1/2 with hidden device list
 
 
 ===================================
diff --git a/doc/C/gnome-commander.xml b/doc/C/gnome-commander.xml
index ad2c9cd..fcf092f 100644
--- a/doc/C/gnome-commander.xml
+++ b/doc/C/gnome-commander.xml
@@ -6033,6 +6033,9 @@
                         <listitem>
                             <para>Fixed problem with not working keypad enter in copy/move dialog</para>
                         </listitem>
+                        <listitem>
+                            <para>Fixed problem with stalled keyboard after ALT+1/2 with hidden device list</para>
+                        </listitem>
                     </itemizedlist>
                 </para>
             </entry>
diff --git a/src/gnome-cmd-main-win.cc b/src/gnome-cmd-main-win.cc
index 72faca2..1dd0df6 100644
--- a/src/gnome-cmd-main-win.cc
+++ b/src/gnome-cmd-main-win.cc
@@ -942,7 +942,8 @@ gboolean GnomeCmdMainWin::key_pressed(GdkEventKey *event)
                 {
                     GnomeCmdFileSelector *fs = this->fs(LEFT);
                     switch_fs(fs);
-                    fs->con_combo->popup_list();
+                    if (gnome_cmd_data.concombo_visibility)
+                        fs->con_combo->popup_list();
                 }
                 return TRUE;
 
@@ -950,7 +951,8 @@ gboolean GnomeCmdMainWin::key_pressed(GdkEventKey *event)
                 {
                     GnomeCmdFileSelector *fs = this->fs(RIGHT);
                     switch_fs(fs);
-                    fs->con_combo->popup_list();
+                    if (gnome_cmd_data.concombo_visibility)
+                        fs->con_combo->popup_list();
                 }
                 return TRUE;
 



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]