Daniel Brötzmann pushed to branch master at gajim / gajim
Commits:
7408d91f by wurstsalat at 2021-12-11T22:25:31+01:00
XMLConsole: Fix imports
- - - - -
1 changed file:
- gajim/gtk/xml_console.py
Changes:
=====================================
gajim/gtk/xml_console.py
=====================================
@@ -23,10 +23,10 @@
from gajim.common import app
from gajim.common import ged
from gajim.common.i18n import _
-from gajim.common.const import StyleAttr
-from . import util
from .util import get_builder
+from .util import at_the_end
+from .util import scroll_to_end
from .util import MaxWidthComboBoxText
from .util import EventHelper
from .dialogs import ErrorDialog
@@ -384,7 +384,7 @@ def _print_stanza(self, event, kind):
if not stanza:
return
- at_the_end = util.at_the_end(self._ui.scrolled)
+ is_at_the_end = at_the_end(self._ui.scrolled)
buffer_ = self._ui.sourceview.get_buffer()
end_iter = buffer_.get_end_iter()
@@ -406,5 +406,5 @@ def _print_stanza(self, event, kind):
stanza=stanza)
buffer_.insert_with_tags_by_name(end_iter, stanza, type_, kind)
- if at_the_end:
- GLib.idle_add(util.scroll_to_end, self._ui.scrolled)
+ if is_at_the_end:
+ GLib.idle_add(scroll_to_end, self._ui.scrolled)
View it on GitLab:
https://dev.gajim.org/gajim/gajim/-/commit/7408d91fb2162f7395bc30b9d1066f7ae00c2b3e
--
View it on GitLab:
https://dev.gajim.org/gajim/gajim/-/commit/7408d91fb2162f7395bc30b9d1066f7ae00c2b3e
You're receiving this email because of your account on dev.gajim.org.
_______________________________________________
Commits mailing list
[email protected]
https://lists.gajim.org/cgi-bin/listinfo/commits