From d80120fe7e4a58fdc390432daec0066af7c16d5f Mon Sep 17 00:00:00 2001 From: ivan tkachenko Date: Thu, 27 Apr 2023 15:53:53 +0500 Subject: [PATCH] effects/overview: Use standard naming for the main QML source Makes it easier to navigate project, especially when filtering through all files by partial name. --- src/effects/overview/overvieweffect.cpp | 2 +- src/effects/overview/qml/{ScreenView.qml => main.qml} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename src/effects/overview/qml/{ScreenView.qml => main.qml} (100%) diff --git a/src/effects/overview/overvieweffect.cpp b/src/effects/overview/overvieweffect.cpp index c25f0f510a..1565771e8c 100644 --- a/src/effects/overview/overvieweffect.cpp +++ b/src/effects/overview/overvieweffect.cpp @@ -73,7 +73,7 @@ OverviewEffect::OverviewEffect() initConfig(); reconfigure(ReconfigureAll); - setSource(QUrl::fromLocalFile(QStandardPaths::locate(QStandardPaths::GenericDataLocation, QStringLiteral("kwin/effects/overview/qml/ScreenView.qml")))); + setSource(QUrl::fromLocalFile(QStandardPaths::locate(QStandardPaths::GenericDataLocation, QStringLiteral("kwin/effects/overview/qml/main.qml")))); } OverviewEffect::~OverviewEffect() diff --git a/src/effects/overview/qml/ScreenView.qml b/src/effects/overview/qml/main.qml similarity index 100% rename from src/effects/overview/qml/ScreenView.qml rename to src/effects/overview/qml/main.qml