[latexila/gnome-3] File browser: space out the widgets
- From: SÃbastien Wilmet <swilmet src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [latexila/gnome-3] File browser: space out the widgets
- Date: Thu, 29 Mar 2012 22:58:37 +0000 (UTC)
commit 8e04c3f72ff5b5524af4d0959ebe2abbf9d0f37c
Author: SÃbastien Wilmet <swilmet src gnome org>
Date: Fri Mar 30 01:00:37 2012 +0200
File browser: space out the widgets
src/file_browser.vala | 6 +++++-
1 files changed, 5 insertions(+), 1 deletions(-)
---
diff --git a/src/file_browser.vala b/src/file_browser.vala
index 49c6bd1..ba6418b 100644
--- a/src/file_browser.vala
+++ b/src/file_browser.vala
@@ -51,7 +51,7 @@ public class FileBrowser : Grid
public FileBrowser (MainWindow main_window)
{
- row_spacing = 3;
+ row_spacing = 5;
orientation = Orientation.VERTICAL;
this._main_window = main_window;
this._build_view = main_window.get_build_view ();
@@ -97,6 +97,8 @@ public class FileBrowser : Grid
Grid grid = new Grid ();
grid.set_orientation (Orientation.HORIZONTAL);
grid.column_homogeneous = true;
+ grid.set_margin_left (3);
+ grid.set_margin_right (3);
add (grid);
Button home_button = Utils.get_toolbar_button (Stock.HOME);
@@ -168,6 +170,8 @@ public class FileBrowser : Grid
typeof (File));
_combo_box = new ComboBox.with_model (_parent_dir_store);
+ _combo_box.set_margin_left (3);
+ _combo_box.set_margin_right (3);
add (_combo_box);
// pixbuf
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]