diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2017-04-13 17:17:25 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2017-04-13 17:17:25 (GMT) |
commit | 8d3d09fc1502f8422da72863bfd0984f833a10cf (patch) | |
tree | b61ae36ed3089e42b718af6943f854fe1f4daa0a | |
parent | 6906aa19b7ac4c14615c30d15bfb26b0b86557d5 (diff) |
Put the treeview for binary portions into a scrollable window.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | src/gui/panels/bintree.ui | 21 |
2 files changed, 19 insertions, 7 deletions
@@ -1,5 +1,10 @@ 17-04-13 Cyrille Bagard <nocbos@gmail.com> + * src/gui/panels/bintree.ui: + Put the treeview for binary portions into a scrollable window. + +17-04-13 Cyrille Bagard <nocbos@gmail.com> + * plugins/androhelpers/switch.c: * plugins/androhelpers/try_n_catch.c: * plugins/libcsem/exit.c: diff --git a/src/gui/panels/bintree.ui b/src/gui/panels/bintree.ui index 2348e8d..678cc56 100644 --- a/src/gui/panels/bintree.ui +++ b/src/gui/panels/bintree.ui @@ -168,19 +168,26 @@ </packing> </child> <child> - <object class="GtkTreeView" id="treeview"> + <object class="GtkScrolledWindow" id="scrolledwindow1"> <property name="visible">True</property> <property name="can_focus">True</property> - <property name="model">store</property> - <property name="headers_visible">False</property> - <child internal-child="selection"> - <object class="GtkTreeSelection" id="treeview-selection1"> - <signal name="changed" handler="on_bintree_selection_changed" swapped="no"/> + <property name="shadow_type">in</property> + <child> + <object class="GtkTreeView" id="treeview"> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="model">store</property> + <property name="headers_visible">False</property> + <child internal-child="selection"> + <object class="GtkTreeSelection" id="treeview-selection1"> + <signal name="changed" handler="on_bintree_selection_changed" swapped="no"/> + </object> + </child> </object> </child> </object> <packing> - <property name="expand">False</property> + <property name="expand">True</property> <property name="fill">True</property> <property name="position">1</property> </packing> |