Fix flickering tooltips in 3.24.1
This commit is contained in:
parent
c2d03dbf24
commit
3a97d44e3e
|
@ -74,6 +74,11 @@ def _init_gtk():
|
||||||
|
|
||||||
from gajim.application import GajimApplication
|
from gajim.application import GajimApplication
|
||||||
|
|
||||||
|
# Fix bug in 3.24.1 with flickering tooltips
|
||||||
|
if sys.platform in ('darwin', 'win32'):
|
||||||
|
settings = Gtk.Settings.get_default()
|
||||||
|
settings.set_property('gtk-cursor-theme-size', 16)
|
||||||
|
|
||||||
application = GajimApplication()
|
application = GajimApplication()
|
||||||
_install_sginal_handlers(application)
|
_install_sginal_handlers(application)
|
||||||
application.run(sys.argv)
|
application.run(sys.argv)
|
||||||
|
|
Loading…
Reference in New Issue