feat: add sticky overlay functionality

This commit is contained in:
marepallisanthosh999333
2025-11-08 20:29:14 +05:30
parent 769ed3bf71
commit 549a43ac7f
8 changed files with 417 additions and 3 deletions
@@ -11,6 +11,9 @@ import qs.modules.overlay.volumeMixer
import qs.modules.overlay.fpsLimiter
import qs.modules.overlay.recorder
import qs.modules.overlay.resources
// CUSTOM: Stickypad integration - START
import qs.modules.overlay.stickypad
// CUSTOM: Stickypad integration - END
DelegateChooser {
id: root
@@ -21,4 +24,7 @@ DelegateChooser {
DelegateChoice { roleValue: "fpsLimiter"; FpsLimiter {} }
DelegateChoice { roleValue: "recorder"; Recorder {} }
DelegateChoice { roleValue: "resources"; Resources {} }
// CUSTOM: Stickypad integration - START
DelegateChoice { roleValue: "stickypad"; Stickypad {} }
// CUSTOM: Stickypad integration - END
}