[gnome-boxes] Align the spinner
- From: Alexander Larsson <alexl src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-boxes] Align the spinner
- Date: Fri, 22 Feb 2013 12:06:18 +0000 (UTC)
commit 7e67be0f47818ce69ce388ecfe0d810412ae537d
Author: Alexander Larsson <alexl redhat com>
Date: Fri Feb 22 11:19:52 2013 +0100
Align the spinner
https://bugzilla.gnome.org/show_bug.cgi?id=693497
src/topbar.vala | 7 +++++++
1 files changed, 7 insertions(+), 0 deletions(-)
---
diff --git a/src/topbar.vala b/src/topbar.vala
index cd4ec04..c3ee72f 100644
--- a/src/topbar.vala
+++ b/src/topbar.vala
@@ -60,16 +60,23 @@ private class Boxes.Topbar: Boxes.UI {
back_btn = toolbar.add_button ("go-previous-symbolic", null, true) as Gtk.Button;
back_btn.clicked.connect ((button) => { App.app.ui_state = UIState.COLLECTION; });
+ // We need a sizegroup to ensure the spinner is the same size
+ // as the buttons so it centers correctly
+ var spinner_sizegroup = new Gtk.SizeGroup (Gtk.SizeGroupMode.HORIZONTAL);
+
spinner = new Gtk.Spinner ();
spinner.start ();
spinner.hexpand = true;
spinner.vexpand = true;
+ spinner.margin = 6;
toolbar.add_widget (spinner, false);
+ spinner_sizegroup.add_widget (spinner);
search_btn = toolbar.add_toggle ("edit-find-symbolic", null, false) as Gtk.ToggleButton;
search_btn.bind_property ("active", App.app.searchbar, "visible", BindingFlags.BIDIRECTIONAL);
select_btn = toolbar.add_button ("object-select-symbolic", null, false) as Gtk.Button;
+ spinner_sizegroup.add_widget (select_btn);
select_btn.clicked.connect (() => {
App.app.selection_mode = true;
});
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]