diff options
author | Pedro Pinto Silva <pedro.silva@collabora.com> | 2021-04-26 11:14:35 +0200 |
---|---|---|
committer | Pedro Silva <pedro.silva@collabora.com> | 2021-04-26 16:24:59 +0200 |
commit | 4e9df130a7f4084d1642a213792100187569900b (patch) | |
tree | 072f1bb22fbdd0ad155b1168d8ecff6cbce6cd3e /cui/uiconfig/ui | |
parent | a1df819d33d8b9b788c57b5f7d55c7fc3fd19764 (diff) |
AboutDialog: imgBrand: Fix alignment
The imgBrand was "centered" aligned with the text bellow which was
resulting in not only going against the dialog layout (2 sections) but
was also appearing "false" centered aligned:
- Left section: imgAbout
- Right section: text left aligned
- Right section: imgBrand was not left aligned and not centered aligned
etheir (with the dialog)
Fix: Left align imgBrand to be consistent with other elements in the
same section.
Signed-off-by: Pedro Pinto Silva <pedro.silva@collabora.com>
Change-Id: I227f67863d5b6e951c498ee7acdfadc0fac75e6c
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/114648
Tested-by: Jenkins
Diffstat (limited to 'cui/uiconfig/ui')
-rw-r--r-- | cui/uiconfig/ui/aboutdialog.ui | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cui/uiconfig/ui/aboutdialog.ui b/cui/uiconfig/ui/aboutdialog.ui index 0121e26a2485..02103df42abc 100644 --- a/cui/uiconfig/ui/aboutdialog.ui +++ b/cui/uiconfig/ui/aboutdialog.ui @@ -78,7 +78,7 @@ <object class="GtkImage" id="imBrand"> <property name="visible">True</property> <property name="can-focus">False</property> - <property name="halign">center</property> + <property name="halign">start</property> <property name="valign">center</property> <property name="margin-top">24</property> <property name="margin-bottom">24</property> |