kdevelop, revbump, use system theme (#10258)

Co-authored-by: Gerasim Troeglazov <3dEyes@gmail.com>
This commit is contained in:
Schrijvers Luc
2024-03-26 08:20:20 +01:00
committed by GitHub
parent c188ba5280
commit bd3126aea7
2 changed files with 26 additions and 2 deletions

View File

@@ -1,4 +1,4 @@
From a3f811fa006b455eb09a927089fcd42e960533ed Mon Sep 17 00:00:00 2001
From f21efd5a42d7137d141ba4a48ec32bda4f65c100 Mon Sep 17 00:00:00 2001
From: Gerasim Troeglazov <3dEyes@gmail.com>
Date: Tue, 22 Sep 2020 13:41:47 +1000
Subject: Fix for Haiku
@@ -77,3 +77,27 @@ index e7e3b69..332c95e 100644
--
2.43.2
From 16f7690fb676c87c733d7563228d21335ddc58d3 Mon Sep 17 00:00:00 2001
From: Schrijvers Luc <begasus@gmail.com>
Date: Tue, 26 Mar 2024 08:14:54 +0100
Subject: Use system theme
diff --git a/kdevplatform/shell/mainwindow_p.cpp b/kdevplatform/shell/mainwindow_p.cpp
index e553dd0..e7b2176 100644
--- a/kdevplatform/shell/mainwindow_p.cpp
+++ b/kdevplatform/shell/mainwindow_p.cpp
@@ -312,7 +312,9 @@ void MainWindowPrivate::setupActions()
action->setWhatsThis( i18nc( "@info:whatsthis", "Adds a new tool view to this window." ) );
//Load themes
+#ifndef Q_OS_HAIKU
actionCollection()->addAction(QStringLiteral("colorscheme_menu"), new ColorSchemeChooser(actionCollection()));
+#endif
}
void MainWindowPrivate::toggleArea(bool b)
--
2.43.2