changeset 30713:fc90556a0356

maint: merge stable to default.
author Rik <rik@octave.org>
date Sat, 05 Feb 2022 21:45:43 -0800
parents 61134c8dd8e8 (current diff) 7fe4b83eb425 (diff)
children 98484425bd1b
files
diffstat 2 files changed, 3 insertions(+), 8 deletions(-) [+]
line wrap: on
line diff
--- a/libgui/src/led-indicator.cc	Sat Feb 05 21:44:56 2022 -0800
+++ b/libgui/src/led-indicator.cc	Sat Feb 05 21:45:43 2022 -0800
@@ -52,11 +52,12 @@
         break;
 
       case LED_STATE_INACTIVE:
-        col = QColor (Qt::darkRed);
+        col = QColor (Qt::darkGray);
+        col.setRedF (col.redF () * 1.25);
         break;
 
       case LED_STATE_ACTIVE:
-        col = QColor (Qt::darkGreen);
+        col = QColor (Qt::red);
         break;
       }
 
--- a/libgui/src/octave-qobject.cc	Sat Feb 05 21:44:56 2022 -0800
+++ b/libgui/src/octave-qobject.cc	Sat Feb 05 21:45:43 2022 -0800
@@ -258,12 +258,6 @@
     connect (qt_link (), &qt_interpreter_events::copy_image_to_clipboard_signal,
              this, &base_qobject::copy_image_to_clipboard);
 
-    // Get settings file.
-    m_resource_manager.reload_settings ();
-
-    // After settings.
-    config_translators ();
-
     connect (qt_link (), &qt_interpreter_events::show_documentation_signal,
              this, &base_qobject::show_documentation_window);