aboutsummaryrefslogtreecommitdiff
path: root/src/prompt-box.vala
diff options
context:
space:
mode:
authorRobert Tari <robert@tari.in>2025-04-08 18:42:50 +0200
committerRobert Tari <robert@tari.in>2025-04-08 18:42:50 +0200
commite0acacd0f3bbee7a510689e1023150c458532ee0 (patch)
tree8dd238f5bdd68bff8c0b1c6a00e8b6500e84a05e /src/prompt-box.vala
parent81c3c04dec4d3ad94fc8f8e46af448aeb3699c75 (diff)
downloadarctica-greeter-e0acacd0f3bbee7a510689e1023150c458532ee0.tar.gz
arctica-greeter-e0acacd0f3bbee7a510689e1023150c458532ee0.tar.bz2
arctica-greeter-e0acacd0f3bbee7a510689e1023150c458532ee0.zip
Fix size and position of elements
Diffstat (limited to 'src/prompt-box.vala')
-rw-r--r--src/prompt-box.vala4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/prompt-box.vala b/src/prompt-box.vala
index 1254d14..e29d6ef 100644
--- a/src/prompt-box.vala
+++ b/src/prompt-box.vala
@@ -2,7 +2,7 @@
*
* Copyright (C) 2011,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
@@ -96,6 +96,7 @@ public class PromptBox : FadableBox
construct
{
+ resize_mode = Gtk.ResizeMode.QUEUE;
var greeter = new ArcticaGreeter();
set_start_row ();
@@ -569,7 +570,6 @@ public class PromptBox : FadableBox
public void add_message (string text, bool is_error)
{
var label = new FadingLabel (text);
- label.set_line_wrap (true);
var style_ctx = label.get_style_context();