diff options
| author | Nathan Lee <2431820-nathanal@users.noreply.gitlab.com> | 2019-03-30 01:39:59 +0000 |
|---|---|---|
| committer | Nathan Lee <2431820-nathanal@users.noreply.gitlab.com> | 2019-04-02 08:55:59 +0000 |
| commit | 53ead5269c16cf7decee30713b0cd0d1456e7138 (patch) | |
| tree | 66fda5dd8d50d5a7b86e22690742b607a7d01381 /src/ui/dialog/text-edit.cpp | |
| parent | Avoid crash from nullptr exception (diff) | |
| download | inkscape-53ead5269c16cf7decee30713b0cd0d1456e7138.tar.gz inkscape-53ead5269c16cf7decee30713b0cd0d1456e7138.zip | |
Tidy various dialog UIs
Diffstat (limited to 'src/ui/dialog/text-edit.cpp')
| -rw-r--r-- | src/ui/dialog/text-edit.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/ui/dialog/text-edit.cpp b/src/ui/dialog/text-edit.cpp index 4f2f04ec6..fd8422652 100644 --- a/src/ui/dialog/text-edit.cpp +++ b/src/ui/dialog/text-edit.cpp @@ -91,8 +91,9 @@ TextEdit::TextEdit() preview_label.set_justify (Gtk::JUSTIFY_CENTER); preview_label.set_line_wrap (false); + font_vbox.set_border_width(4); font_vbox.pack_start(font_selector, true, true); - font_vbox.pack_start(preview_label, false, false, 5); + font_vbox.pack_start(preview_label, false, false, 4); /* Features tab ---------------------------- */ @@ -101,8 +102,9 @@ TextEdit::TextEdit() preview_label2.set_justify (Gtk::JUSTIFY_CENTER); preview_label2.set_line_wrap (false); + feat_vbox.set_border_width(4); feat_vbox.pack_start(font_features, true, true); - feat_vbox.pack_start(preview_label2, false, false, 5); + feat_vbox.pack_start(preview_label2, false, false, 4); /* Text tab -------------------------------- */ scroller.set_policy( Gtk::POLICY_AUTOMATIC, Gtk::POLICY_AUTOMATIC ); |
