diff options
author | Caolán McNamara <caolanm@redhat.com> | 2022-08-05 12:22:20 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2022-08-05 17:05:22 +0200 |
commit | 07d8563785d26bfab30ae26ced94e6e9826ae002 (patch) | |
tree | 3b501e2b1ae7a20faff73b28148f9e9dffe4c777 /svtools | |
parent | 5ae01ffa70549b1a4d9f166d0528a8d04a5dc858 (diff) |
align horz scrollbar to top if assigned more space than it wants
as is currently the case for the databrowser scrollbar, and do the
same to the vert for consistency
Change-Id: Icf8694f172c3121f35f612a47faa2e2caef890c9
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/137863
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'svtools')
-rw-r--r-- | svtools/uiconfig/ui/scrollbars.ui | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/svtools/uiconfig/ui/scrollbars.ui b/svtools/uiconfig/ui/scrollbars.ui index f2c9ac728376..c7901e4d32e8 100644 --- a/svtools/uiconfig/ui/scrollbars.ui +++ b/svtools/uiconfig/ui/scrollbars.ui @@ -21,6 +21,7 @@ <child> <object class="GtkScrollbar" id="vertical"> <property name="can-focus">False</property> + <property name="halign">start</property> <property name="vexpand">True</property> <property name="orientation">vertical</property> <property name="adjustment">adjustment1</property> @@ -34,6 +35,7 @@ <child> <object class="GtkScrollbar" id="horizontal"> <property name="can-focus">False</property> + <property name="valign">start</property> <property name="hexpand">True</property> <property name="adjustment">adjustment2</property> </object> |