From 6f87e0c9e69d6fa3211588c7882d9b69cdc1629d Mon Sep 17 00:00:00 2001 From: Marius Stanciu Date: Mon, 30 Aug 2021 00:53:11 +0300 Subject: [PATCH] - disabled the selection of a Graphic Engine until matplotlib will have support for PyQt6 framework --- CHANGELOG.md | 1 + appGUI/preferences/general/GeneralAppPrefGroupUI.py | 3 +++ 2 files changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index c43a2777..8a60fc2a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,7 @@ CHANGELOG for FlatCAM beta 30.08.2021 - fixed the reconnection of the mouse events when canceling setting the origin +- disabled the selection of a Graphic Engine until matplotlib will have support for PyQt6 framework 29.08.2021 diff --git a/appGUI/preferences/general/GeneralAppPrefGroupUI.py b/appGUI/preferences/general/GeneralAppPrefGroupUI.py index cbef327f..ca2a1a0c 100644 --- a/appGUI/preferences/general/GeneralAppPrefGroupUI.py +++ b/appGUI/preferences/general/GeneralAppPrefGroupUI.py @@ -82,6 +82,9 @@ class GeneralAppPrefGroupUI(OptionsGroupUI): {'label': _('OpenGL(3D)'), 'value': '3D'}], orientation='vertical') + # TODO disabled until matplotlib will support PyQt6 + self.ge_radio.setDisabled(True) + grid0.addWidget(self.ge_label, 6, 0) grid0.addWidget(self.ge_radio, 6, 1)