File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ 2024-05-20 -- v0.8.4
2+ -- Fixed issue with the latest update of gnome 46
3+
142023-08-18 -- v0.8.3
2- -- Synchronize the scrolls of input/ouput boxes.
5+ -- Synchronize the scrolls of input/output boxes.
36
472023-08-17 -- v0.8.2
58-- `txt` as a default extension for saving/opening file.
Original file line number Diff line number Diff line change 11import platform
22from pathlib import Path
33
4- __version__ = "0.8.3 "
4+ __version__ = "0.8.4 "
55
66APPDATA = "AppData/Roaming/" if platform .system () == "Windows" else "."
77SETTING_FILE = Path .home () / f"{ APPDATA } negar-gui/settings.toml"
Original file line number Diff line number Diff line change @@ -774,7 +774,10 @@ def main(args=docopt(__doc__)):
774774 sys .exit ()
775775
776776 global MAIN_WINDOW
777- qdarktheme .enable_hi_dpi ()
777+ try :
778+ qdarktheme .enable_hi_dpi ()
779+ except AttributeError :
780+ qdarktheme .setup_theme = lambda x , ** kw : ()
778781 app = QApplication (sys .argv )
779782 qdarktheme .setup_theme ("dark" )
780783 MAIN_WINDOW = MyWindow ()
You can’t perform that action at this time.
0 commit comments