diff options
author | Matthias Vogelgesang <matthias.vogelgesang@gmail.com> | 2012-10-09 16:52:36 +0200 |
---|---|---|
committer | Matthias Vogelgesang <matthias.vogelgesang@gmail.com> | 2012-10-10 17:44:53 +0200 |
commit | 9d84d920da67f857ef31a2a2b475b191ec3c6c55 (patch) | |
tree | d52becd8273dcca477b9944e48c5ed52baf2dd7c /tools/gui/control.glade | |
parent | 0badcd14dc0ba8b3b6894be035237b846e3fb0e6 (diff) | |
download | libuca-9d84d920da67f857ef31a2a2b475b191ec3c6c55.tar.gz libuca-9d84d920da67f857ef31a2a2b475b191ec3c6c55.tar.bz2 libuca-9d84d920da67f857ef31a2a2b475b191ec3c6c55.tar.xz libuca-9d84d920da67f857ef31a2a2b475b191ec3c6c55.zip |
Use scrolled window for camera choice
Diffstat (limited to 'tools/gui/control.glade')
-rw-r--r-- | tools/gui/control.glade | 26 |
1 files changed, 18 insertions, 8 deletions
diff --git a/tools/gui/control.glade b/tools/gui/control.glade index d7ba2fc..ad5a91f 100644 --- a/tools/gui/control.glade +++ b/tools/gui/control.glade @@ -235,18 +235,28 @@ <property name="visible">True</property> <property name="spacing">2</property> <child> - <object class="GtkTreeView" id="treeview-cameras"> + <object class="GtkScrolledWindow" id="scrolledwindow3"> <property name="visible">True</property> <property name="can_focus">True</property> - <property name="model">camera-types</property> + <property name="hscrollbar_policy">automatic</property> + <property name="vscrollbar_policy">automatic</property> <child> - <object class="GtkTreeViewColumn" id="treeviewcolumn1"> - <property name="title">Choose camera</property> + <object class="GtkTreeView" id="treeview-cameras"> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="model">camera-types</property> + <property name="headers_clickable">False</property> + <property name="search_column">0</property> <child> - <object class="GtkCellRendererText" id="cellrenderertext1"/> - <attributes> - <attribute name="text">0</attribute> - </attributes> + <object class="GtkTreeViewColumn" id="treeviewcolumn1"> + <property name="title">Choose camera</property> + <child> + <object class="GtkCellRendererText" id="cellrenderertext1"/> + <attributes> + <attribute name="text">0</attribute> + </attributes> + </child> + </object> </child> </object> </child> |