File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ if (LINUX)
4848 find_package (Qt6 ${QT_MIN_VERSION} REQUIRED NO_MODULE COMPONENTS DBus )
4949endif ()
5050
51- find_package (KF6 ${KF_MIN_VERSION} REQUIRED COMPONENTS Kirigami I18n Config CoreAddons Archive )
51+ find_package (KF6 ${KF_MIN_VERSION} REQUIRED COMPONENTS Kirigami I18n Config CoreAddons Archive IconThemes )
5252find_package (KF6KirigamiAddons 1.10.0 REQUIRED )
5353find_package (QCoro6 REQUIRED COMPONENTS Core Network Qml )
5454qcoro_enable_coroutines ()
Original file line number Diff line number Diff line change @@ -165,6 +165,7 @@ target_link_libraries(astra PRIVATE
165165 Qt6::Widgets
166166 Qt6::QuickControls2
167167 KF6::Kirigami
168+ KF6::IconThemes
168169 KirigamiApp )
169170
170171if (BUILD_WEBVIEW)
Original file line number Diff line number Diff line change 22// SPDX-License-Identifier: GPL-3.0-or-later
33
44#include < KAboutData>
5+ #include < KIconTheme>
56#include < KLocalizedString>
67#include < KirigamiApp>
78#include < QApplication> // NOTE: do not remove this, if your IDE suggests to do so
@@ -30,6 +31,8 @@ int main(int argc, char *argv[])
3031 QtWebView::initialize ();
3132#endif
3233
34+ KIconTheme::initTheme (); // TODO: KirigamiApp doesn't call this before app construction so it doesn't work on Windows
35+
3336 KirigamiApp::App app (argc, argv);
3437 KirigamiApp kapp;
3538
You can’t perform that action at this time.
0 commit comments