diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-03-31 15:41:42 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-03-31 15:46:15 +0100 |
commit | a13362ef97d7cb7216009fe7002a050516895cb4 (patch) | |
tree | 7c0e19e639e4501ab9a341ac7d3270d9fca3c027 /vcl/uiconfig | |
parent | dcc8c9173d76c3f31af6b1098d920c5491ed150e (diff) |
Resolves: fdo#43049 basic PPD custom options support
because this is another way seen in the wild to transmit a fax number through
cups as an alternative to using fax4CUPS
Change-Id: I32db38aa05213e469442136eb46d0028098a8b7e
Diffstat (limited to 'vcl/uiconfig')
-rw-r--r-- | vcl/uiconfig/ui/printerdevicepage.ui | 37 |
1 files changed, 32 insertions, 5 deletions
diff --git a/vcl/uiconfig/ui/printerdevicepage.ui b/vcl/uiconfig/ui/printerdevicepage.ui index 2102d6da50a0..20eb96bffafd 100644 --- a/vcl/uiconfig/ui/printerdevicepage.ui +++ b/vcl/uiconfig/ui/printerdevicepage.ui @@ -71,7 +71,7 @@ <property name="xalign">0</property> <property name="label" translatable="yes">Current _value</property> <property name="use_underline">True</property> - <property name="mnemonic_widget">values:border</property> + <property name="mnemonic_widget">valuegrid</property> <attributes> <attribute name="weight" value="bold"/> </attributes> @@ -195,13 +195,40 @@ </packing> </child> <child> - <object class="GtkTreeView" id="values:border"> + <object class="GtkGrid" id="valuegrid"> <property name="visible">True</property> - <property name="can_focus">True</property> + <property name="can_focus">False</property> <property name="hexpand">True</property> <property name="vexpand">True</property> - <child internal-child="selection"> - <object class="GtkTreeSelection" id="treeview-selection2"/> + <property name="row_spacing">6</property> + <child> + <object class="GtkEntry" id="custom"> + <property name="can_focus">True</property> + <property name="no_show_all">True</property> + </object> + <packing> + <property name="left_attach">0</property> + <property name="top_attach">0</property> + <property name="width">1</property> + <property name="height">1</property> + </packing> + </child> + <child> + <object class="GtkTreeView" id="values:border"> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="hexpand">True</property> + <property name="vexpand">True</property> + <child internal-child="selection"> + <object class="GtkTreeSelection" id="treeview-selection"/> + </child> + </object> + <packing> + <property name="left_attach">0</property> + <property name="top_attach">1</property> + <property name="width">1</property> + <property name="height">1</property> + </packing> </child> </object> <packing> |