diff options
| author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2025-04-10 15:10:47 +0200 |
|---|---|---|
| committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2025-04-10 15:10:47 +0200 |
| commit | 65ccc9ad9f8fa6186851b3e33a2747527355dae9 (patch) | |
| tree | b1f476c06bf6346c2ffb2173abcde59d6b78d715 /src/prompt-box.vala | |
| parent | 81c3c04dec4d3ad94fc8f8e46af448aeb3699c75 (diff) | |
| parent | 9153eef0511a125ce769049d8a000977a02698a6 (diff) | |
| download | arctica-greeter-65ccc9ad9f8fa6186851b3e33a2747527355dae9.tar.gz arctica-greeter-65ccc9ad9f8fa6186851b3e33a2747527355dae9.tar.bz2 arctica-greeter-65ccc9ad9f8fa6186851b3e33a2747527355dae9.zip | |
Merge branch 'tari01-pr/size-position-fix'
Attributes GH PR #115: https://github.com/ArcticaProject/arctica-greeter/pull/115
Diffstat (limited to 'src/prompt-box.vala')
| -rw-r--r-- | src/prompt-box.vala | 4 |
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(); |
