File tree Expand file tree Collapse file tree 2 files changed +12
-4
lines changed
Expand file tree Collapse file tree 2 files changed +12
-4
lines changed Original file line number Diff line number Diff line change 11# guidata Releases #
22
3+ ## Version 2.2.1 ##
4+
5+ Bug fixes:
6+
7+ * Collection editor: fixed "Save array" feature
8+ * Console widget context menu: added missing icons
9+
310## Version 2.2.0 ##
411
512Changes:
Original file line number Diff line number Diff line change 1717.. _GoogleGroup: http://groups.google.fr/group/guidata_guiqwt
1818"""
1919
20- __version__ = "2.2.0 "
20+ __version__ = "2.2.1 "
2121
2222# TODO: Investigate the qthelpers test failure (see after if __name__=='__main__')
2323
@@ -564,7 +564,7 @@ def install_translator(qapp):
564564 """Install Qt translator to the QApplication instance"""
565565 global QT_TRANSLATOR
566566 if QT_TRANSLATOR is None :
567- from qtpy .QtCore import QLocale , QTranslator , QLibraryInfo
567+ from qtpy .QtCore import QLibraryInfo , QLocale , QTranslator
568568
569569 locale = QLocale .system ().name ()
570570 # Qt-specific translator
@@ -579,9 +579,10 @@ def install_translator(qapp):
579579
580580def set_color_mode (app ):
581581 """Set color mode (dark or light), depending on OS setting"""
582- from qtpy .QtWidgets import QStyleFactory
583- from qtpy .QtGui import QPalette , QColor
584582 from qtpy .QtCore import Qt
583+ from qtpy .QtGui import QColor , QPalette
584+ from qtpy .QtWidgets import QStyleFactory
585+
585586 from guidata import qthelpers
586587
587588 if qthelpers .is_dark_mode ():
You can’t perform that action at this time.
0 commit comments