mirror of
https://github.com/pbek/QOwnNotes.git
synced 2025-06-28 21:09:52 +00:00
12 lines
279 B
QML
12 lines
279 B
QML
import QtQml 2.0
|
|
import QOwnNotesTypes 1.0
|
|
import com.qownnotes.noteapi 1.0
|
|
|
|
/**
|
|
* This script shows a log entry when the window state is changed
|
|
*/
|
|
Script {
|
|
function windowStateChangedHook(windowState) {
|
|
script.log('Window state changed: ' + windowState);
|
|
}
|
|
}
|