mirror of
https://github.com/arthur-pbty/arthur-os.git
synced 2026-08-06 12:39:35 +02:00
10 lines
320 B
QML
10 lines
320 B
QML
pragma Singleton
|
|
import QtQuick
|
|
|
|
// Noctalia compat shim. The "noctaliaPerformanceMode" flag was a v3 internal
|
|
// state Noctalia plugins occasionally check. We hardcode false; plugins that
|
|
// branch on it will fall into the non-performance code path.
|
|
QtObject {
|
|
readonly property bool noctaliaPerformanceMode: false
|
|
}
|