-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix global N cycles control and focus releasing bugs
- Loading branch information
1 parent
947e0da
commit a2cccca
Showing
4 changed files
with
24 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import QtQuick 6.6 | ||
import QtQuick.Controls 6.6 | ||
import QtQuick.Controls.Material 6.6 | ||
|
||
ScrollView { | ||
id: root | ||
|
||
MouseArea { | ||
x: 0 | ||
y: 0 | ||
width: Math.max(root.contentWidth, root.width) | ||
height: Math.max(root.contentHeight, root.height) | ||
onClicked: release_focus_notifier.notify() | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters