mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-09 22:06:25 +00:00
52fe774975
Adding local setting: metrics_popup_seen Small refactoring: showing popup from main.qml Showing popup: 1. on welcome screen, 2. in Settings/Privacy page and 3. after login when the popup has not been shown yet Issue #15628
12 lines
245 B
QML
12 lines
245 B
QML
import QtQml 2.15
|
|
|
|
QtObject {
|
|
id: root
|
|
|
|
function toggleCentralizedMetrics(enabled) {
|
|
metrics.toggleCentralizedMetrics(enabled)
|
|
}
|
|
|
|
readonly property bool isCentralizedMetricsEnabled : metrics.isCentralizedMetricsEnabled
|
|
}
|