diff options
author | Timm Bäder <mail@baedert.org> | 2020-02-21 13:38:38 +0100 |
---|---|---|
committer | Timm Bäder <mail@baedert.org> | 2020-02-25 11:08:25 +0100 |
commit | dae06d82ae44aa818ad971224be2c1a8035b9bf2 (patch) | |
tree | fe95fb21ce6ab5ed65e2e6c34f04301e2327459c | |
parent | 549a3a81aedffffe57e9ec2dabf28cb55a042c5d (diff) | |
download | gtk+-dae06d82ae44aa818ad971224be2c1a8035b9bf2.tar.gz |
inspector: Remove double borders in recorder
-rw-r--r-- | gtk/inspector/recorder.ui | 133 |
1 files changed, 62 insertions, 71 deletions
diff --git a/gtk/inspector/recorder.ui b/gtk/inspector/recorder.ui index e0f5e74c30..cd48428a02 100644 --- a/gtk/inspector/recorder.ui +++ b/gtk/inspector/recorder.ui @@ -46,107 +46,98 @@ </object> </child> <child> + <object class="GtkSeparator" /> + </child> + <child> <object class="GtkBox"> <style> <class name="view"/> </style> <child> - <object class="GtkFrame"> + <object class="GtkScrolledWindow"> + <property name="hscrollbar-policy">never</property> + <property name="propagate-natural-width">1</property> + <style> + <class name="sidebar"/> + </style> <child> - <object class="GtkScrolledWindow"> - <property name="hscrollbar-policy">never</property> - <property name="propagate-natural-width">1</property> - <style> - <class name="sidebar"/> - </style> - <child> - <object class="GtkListBox" id="recordings_list"> - <property name="vexpand">1</property> - <signal name="row-selected" handler="recordings_list_row_selected"/> - </object> - </child> + <object class="GtkListBox" id="recordings_list"> + <property name="vexpand">1</property> + <signal name="row-selected" handler="recordings_list_row_selected"/> </object> </child> </object> </child> <child> - <object class="GtkFrame"> + <object class="GtkScrolledWindow"> + <property name="hscrollbar-policy">never</property> + <property name="propagate-natural-width">1</property> + <style> + <class name="sidebar"/> + </style> <child> - <object class="GtkScrolledWindow"> - <property name="hscrollbar-policy">never</property> - <property name="propagate-natural-width">1</property> - <style> - <class name="sidebar"/> - </style> - <child> - <object class="GtkListBox" id="render_node_list"> - <property name="vexpand">1</property> - <signal name="row-selected" handler="render_node_list_selection_changed"/> - </object> - </child> + <object class="GtkListBox" id="render_node_list"> + <property name="vexpand">1</property> + <signal name="row-selected" handler="render_node_list_selection_changed"/> </object> </child> </object> </child> <child> - <object class="GtkFrame"> + <object class="GtkPaned" id="render_paned"> + <property name="orientation">vertical</property> + <property name="position">300</property> + <property name="wide-handle">1</property> <child> - <object class="GtkPaned" id="render_paned"> - <property name="orientation">vertical</property> - <property name="position">300</property> - <property name="wide-handle">1</property> + <object class="GtkScrolledWindow"> <child> - <object class="GtkScrolledWindow"> + <object class="GtkTreeView" id="node_property_tree"> + <property name="activate-on-single-click">1</property> + <signal name="row-activated" handler="node_property_activated"/> <child> - <object class="GtkTreeView" id="node_property_tree"> - <property name="activate-on-single-click">1</property> - <signal name="row-activated" handler="node_property_activated"/> + <object class="GtkTreeViewColumn"> + <property name="title" translatable="yes">Property</property> <child> - <object class="GtkTreeViewColumn"> - <property name="title" translatable="yes">Property</property> - <child> - <object class="GtkCellRendererText"> - <property name="yalign">0</property> - </object> - <attributes> - <attribute name="text">0</attribute> - </attributes> - </child> + <object class="GtkCellRendererText"> + <property name="yalign">0</property> </object> + <attributes> + <attribute name="text">0</attribute> + </attributes> + </child> + </object> + </child> + <child> + <object class="GtkTreeViewColumn"> + <property name="title" translatable="yes">Value</property> + <child> + <object class="GtkCellRendererText"> + <property name="yalign">0</property> + <property name="wrap-mode">word</property> + <property name="max-width-chars">50</property> + </object> + <attributes> + <attribute name="text">1</attribute> + </attributes> </child> <child> - <object class="GtkTreeViewColumn"> - <property name="title" translatable="yes">Value</property> - <child> - <object class="GtkCellRendererText"> - <property name="yalign">0</property> - <property name="wrap-mode">word</property> - <property name="max-width-chars">50</property> - </object> - <attributes> - <attribute name="text">1</attribute> - </attributes> - </child> - <child> - <object class="GtkCellRendererPixbuf"> - <property name="xalign">0</property> - </object> - <attributes> - <attribute name="visible">2</attribute> - <attribute name="texture">3</attribute> - </attributes> - </child> + <object class="GtkCellRendererPixbuf"> + <property name="xalign">0</property> </object> + <attributes> + <attribute name="visible">2</attribute> + <attribute name="texture">3</attribute> + </attributes> </child> </object> </child> </object> </child> - <child> - <object class="GtkPicture" id="render_node_view"> - <property name="expand">1</property> - </object> - </child> + </object> + </child> + <child> + <object class="GtkPicture" id="render_node_view"> + <property name="expand">1</property> </object> </child> </object> |