aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Gabriel <mike.gabriel@das-netzwerkteam.de>2024-06-04 11:26:18 +0200
committerMike Gabriel <mike.gabriel@das-netzwerkteam.de>2024-06-04 11:26:18 +0200
commitdd603ac1b726ee5b6e6a4d1c9e9e7732d5bbea99 (patch)
tree98f819f2e18bbc3436475d103e73c0fbafbd426d
parent8286af78a5ab0e783cbcdb81067264c8b5475b7c (diff)
downloadarctica-greeter-dd603ac1b726ee5b6e6a4d1c9e9e7732d5bbea99.tar.gz
arctica-greeter-dd603ac1b726ee5b6e6a4d1c9e9e7732d5bbea99.tar.bz2
arctica-greeter-dd603ac1b726ee5b6e6a4d1c9e9e7732d5bbea99.zip
Revert "Work around GTK 3.20's new allocation logic. Ported from slick-greeter."
This reverts commit 2fa9791d9802d5c34323d9bd99ad9fa608abdda6.
-rw-r--r--src/list-stack.vala3
-rw-r--r--src/main-window.vala2
-rw-r--r--src/prompt-box.vala3
3 files changed, 0 insertions, 8 deletions
diff --git a/src/list-stack.vala b/src/list-stack.vala
index 63bde28..87e040b 100644
--- a/src/list-stack.vala
+++ b/src/list-stack.vala
@@ -35,9 +35,6 @@ public class ListStack : Gtk.Fixed
construct
{
- // Hack to avoid gtk 3.20's new allocate logic, which messes us up.
- resize_mode = Gtk.ResizeMode.QUEUE;
-
width = grid_size * GreeterList.BOX_WIDTH;
}
diff --git a/src/main-window.vala b/src/main-window.vala
index ad2700a..9b7a43b 100644
--- a/src/main-window.vala
+++ b/src/main-window.vala
@@ -125,8 +125,6 @@ public class MainWindow : Gtk.Window
align.add (hbox);
align = new Gtk.Alignment (0.5f, 0.5f, 0.0f, 0.0f);
- // Hack to avoid gtk 3.20's new allocate logic, which messes us up.
- align.resize_mode = Gtk.ResizeMode.QUEUE;
align.set_size_request (grid_size, -1);
align.margin_bottom = MENUBAR_HEIGHT; /* offset for menubar at top */
align.show ();
diff --git a/src/prompt-box.vala b/src/prompt-box.vala
index 601464e..97c95ba 100644
--- a/src/prompt-box.vala
+++ b/src/prompt-box.vala
@@ -96,9 +96,6 @@ public class PromptBox : FadableBox
construct
{
- // Hack to avoid gtk 3.20's new allocate logic, which messes us up.
- resize_mode = Gtk.ResizeMode.QUEUE;
-
set_start_row ();
reset_last_row ();
expand = true;