mirror of
https://github.com/pbek/QOwnNotes.git
synced 2025-06-28 21:09:52 +00:00
15 lines
345 B
QML
15 lines
345 B
QML
import QtQml 2.0
|
|
import QOwnNotesTypes 1.0
|
|
|
|
Script {
|
|
/**
|
|
* This function is called when workspaces are switched
|
|
*
|
|
* @param oldUuid old uuid of workspace
|
|
* @param newUuid new uuid of workspace
|
|
*/
|
|
function workspaceSwitchedHook(oldUuid, newUuid) {
|
|
script.log(oldUuid);
|
|
script.log(newUuid);
|
|
}
|
|
}
|