diff options
Diffstat (limited to 'src/ui/widget/notebook-page.cpp')
| -rw-r--r-- | src/ui/widget/notebook-page.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/ui/widget/notebook-page.cpp b/src/ui/widget/notebook-page.cpp index 894b290fe..a189d7826 100644 --- a/src/ui/widget/notebook-page.cpp +++ b/src/ui/widget/notebook-page.cpp @@ -22,10 +22,11 @@ NotebookPage::NotebookPage(int n_rows, int n_columns, bool expand, bool fill, gu :_table(Gtk::manage(new Gtk::Grid())) { set_name("NotebookPage"); - set_border_width(2); + set_border_width(4); + set_spacing(4); - _table->set_row_spacing(2); - _table->set_column_spacing(2); + _table->set_row_spacing(4); + _table->set_column_spacing(4); pack_start(*_table, expand, fill, padding); } |
