aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Tari <robert@tari.in>2025-03-31 14:01:55 +0200
committerRobert Tari <robert@tari.in>2025-03-31 14:01:55 +0200
commit946775b8ab49b7d056af5fbf8cebf5b0a452fe79 (patch)
treecf6043c39f3514b7d8e1158a1fa11fb230dd1bb0
parent0ddec6b16aa3f0cf7aa07b79043bf23a9c84f79d (diff)
downloadarctica-greeter-946775b8ab49b7d056af5fbf8cebf5b0a452fe79.tar.gz
arctica-greeter-946775b8ab49b7d056af5fbf8cebf5b0a452fe79.tar.bz2
arctica-greeter-946775b8ab49b7d056af5fbf8cebf5b0a452fe79.zip
arctica-greeter/src/greeter-list.vala: Fix DashBox height when the content changes
-rw-r--r--src/greeter-list.vala4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/greeter-list.vala b/src/greeter-list.vala
index b67ba16..04d4ed4 100644
--- a/src/greeter-list.vala
+++ b/src/greeter-list.vala
@@ -2,7 +2,7 @@
*
* Copyright (C) 2012 Canonical Ltd
* Copyright (C) 2015-2017 Mike Gabriel <mike.gabriel@das-netzwerkteam.de>
- * Copyright (C) 2023 Robert Tari
+ * Copyright (C) 2023-2025 Robert Tari
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 3 as
@@ -283,6 +283,7 @@ public abstract class GreeterList : FadableBox
protected void redraw_greeter_box ()
{
+ queue_allocate ();
Gtk.Allocation allocation;
greeter_box.get_allocation (out allocation);
queue_draw_area (allocation.x, allocation.y, allocation.width, allocation.height);
@@ -662,6 +663,7 @@ public abstract class GreeterList : FadableBox
focus_prompt ();
entry_displayed_done ();
mode = Mode.ENTRY;
+ queue_allocate ();
}
protected void select_entry (PromptBox entry, double direction, bool do_scroll = true)