printers: Fix focus chain of the 'New printer dialog'
Disable 'can-focus' for widgets which don't need that in the 'New printer dialog'. https://bugzilla.gnome.org/show_bug.cgi?id=748206
This commit is contained in:
parent
bfd6423dc9
commit
7672eddec9
1 changed files with 4 additions and 4 deletions
|
@ -1,6 +1,6 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<interface>
|
||||
<!-- interface-requires gtk+ 3.0 -->
|
||||
<requires lib="gtk+" version="3.14"/>
|
||||
<object class="GtkListStore" id="devices-liststore">
|
||||
<columns>
|
||||
<!-- column-name device_gicon -->
|
||||
|
@ -52,7 +52,7 @@
|
|||
<child>
|
||||
<object class="GtkNotebook" id="notebook">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">True</property>
|
||||
<property name="can_focus">False</property>
|
||||
<property name="show_tabs">False</property>
|
||||
<child>
|
||||
<object class="GtkButton" id="new-printer-add-button">
|
||||
|
@ -122,12 +122,12 @@
|
|||
<child>
|
||||
<object class="GtkStack" id="stack">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">True</property>
|
||||
<property name="can_focus">False</property>
|
||||
<property name="transition-type">none</property>
|
||||
<child>
|
||||
<object class="GtkScrolledWindow" id="scrolledwindow1">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">True</property>
|
||||
<property name="can_focus">False</property>
|
||||
<property name="shadow_type">in</property>
|
||||
<child>
|
||||
<object class="GtkTreeView" id="devices-treeview">
|
||||
|
|
Loading…
Add table
Reference in a new issue