[gnome-games/wip/exalm/gtk4: 26/31] ui: Drop unnecessary show() and show_all() calls
- From: Alexander Mikhaylenko <alexm src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-games/wip/exalm/gtk4: 26/31] ui: Drop unnecessary show() and show_all() calls
- Date: Sun, 7 Oct 2018 07:44:01 +0000 (UTC)
commit defb026fdd77e6421f841c0d44749c18b3cfeec5
Author: Alexander Mikhaylenko <exalm7659 gmail com>
Date: Sun Jul 29 14:15:48 2018 +0500
ui: Drop unnecessary show() and show_all() calls
src/ui/application.vala | 2 +-
src/ui/preferences-page-controllers.vala | 2 --
src/ui/preferences-page-plugins.vala | 3 ---
3 files changed, 1 insertion(+), 6 deletions(-)
---
diff --git a/src/ui/application.vala b/src/ui/application.vala
index 4444b30f..8fddbde9 100644
--- a/src/ui/application.vala
+++ b/src/ui/application.vala
@@ -232,7 +232,7 @@ public class Games.Application : Gtk.Application {
window.destroy.connect (() => {
quit_application ();
});
- window.show ();
+ window.present ();
GLib.Timeout.add (500, show_loading_notification);
}
diff --git a/src/ui/preferences-page-controllers.vala b/src/ui/preferences-page-controllers.vala
index 5624f429..ed2e64d7 100644
--- a/src/ui/preferences-page-controllers.vala
+++ b/src/ui/preferences-page-controllers.vala
@@ -39,7 +39,6 @@ private class Games.PreferencesPageControllers: Gtk.Bin, PreferencesPage {
var box = new Gtk.Box (Gtk.Orientation.HORIZONTAL, 0);
box.pack_start (new Gtk.Label (device.get_name ()));
box.margin = 6;
- box.show_all ();
gamepads_list_box.add (box);
}
gamepads_label.visible = i > 0;
@@ -75,7 +74,6 @@ private class Games.PreferencesPageControllers: Gtk.Bin, PreferencesPage {
var box = new Gtk.Box (Gtk.Orientation.HORIZONTAL, 0);
box.pack_start (new Gtk.Label (_("Keyboard")));
box.margin = 6;
- box.show_all ();
keyboard_list_box.add (box);
}
diff --git a/src/ui/preferences-page-plugins.vala b/src/ui/preferences-page-plugins.vala
index 091b4021..86b0aba4 100644
--- a/src/ui/preferences-page-plugins.vala
+++ b/src/ui/preferences-page-plugins.vala
@@ -18,8 +18,5 @@ private class Games.PreferencesPagePlugins: Gtk.Bin, PreferencesPage {
var row = new Gtk.ListBoxRow ();
row.add (item);
list_box.add (row);
-
- item.show ();
- row.show ();
}
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]