Daniel Brötzmann pushed to branch master at gajim / gajim
Commits:
c93b6d6c by wurstsalat at 2024-12-21T21:41:48+01:00
cfix: SecurityLabelSelector: Fix position
- - - - -
3 changed files:
- gajim/data/gui/message_actions_box.ui
- gajim/gtk/builder.pyi
- gajim/gtk/message_actions_box.py
Changes:
=====================================
gajim/data/gui/message_actions_box.ui
=====================================
@@ -124,7 +124,7 @@
</object>
</child>
<child>
- <object class="GtkOverlay">
+ <object class="GtkOverlay" id="input_wrapper">
<property name="child">
<object class="GtkScrolledWindow" id="input_scrolled">
<property name="hexpand">1</property>
=====================================
gajim/gtk/builder.pyi
=====================================
@@ -615,6 +615,7 @@ class MessageActionsBoxBuilder(Builder):
action_box: Gtk.Box
emoticons_button: Gtk.MenuButton
formattings_button: Gtk.MenuButton
+ input_wrapper: Gtk.Overlay
input_scrolled: Gtk.ScrolledWindow
input_overlay: Gtk.Box
input_overlay_label: Gtk.Label
=====================================
gajim/gtk/message_actions_box.py
=====================================
@@ -99,7 +99,7 @@ def __init__(self) -> None:
self._security_label_selector = SecurityLabelSelector()
self._ui.action_box.append(self._security_label_selector)
self._ui.action_box.reorder_child_after(
- self._security_label_selector, self._ui.input_scrolled
+ self._security_label_selector, self._ui.input_wrapper
)
self.msg_textview = MessageInputTextView(self)
View it on GitLab:
https://dev.gajim.org/gajim/gajim/-/commit/c93b6d6c18fb02a4a06aea6e93ee7e036aed4469
--
View it on GitLab:
https://dev.gajim.org/gajim/gajim/-/commit/c93b6d6c18fb02a4a06aea6e93ee7e036aed4469
You're receiving this email because of your account on dev.gajim.org.
_______________________________________________
Commits mailing list -- [email protected]
To unsubscribe send an email to [email protected]