Merge settings window to main #23
+15
-9
@@ -24,17 +24,23 @@
|
|||||||
|
|
||||||
# Issues in settingsWindow (16-03-2026)
|
# Issues in settingsWindow (16-03-2026)
|
||||||
|
|
||||||
- [ ] Drawing tool falls behind when accelerating with the cursor (slow start -> faster movement).
|
- [ ] Drawing tool falls behind when accelerating with the cursor (slow start -> faster movement). // Unfortunately this is a limitation of either Qt or the math in my methods, you are free to look through and see if you can come up with better and more performant calculations
|
||||||
- [ ] Undo option for Drawing tool?
|
- [ ] Dock has an invisible border it has a visual that it attaches to; perhaps make it visible when the dock shows? // Yes
|
||||||
- [ ] Size 1-45 kinda weird numbers (not a real issue = ragebait).
|
- [ ] Dock apps are clickable and navigates to app (good). If two instances are available, this feels arbitrarily chosen on one instance (maybe defaults to workspace closest to 1?) (like a selection or hover to see options). // I intend to add popups on hover that show a preview of the opened windows, so you can select which one to focus
|
||||||
- [ ] Dock has an invisible border it has a visual that it attaches to; perhaps make it visible when the dock shows?
|
- [ ] Dock cannot be closed with escape, user needs to click to leave Dock (Dock stops user from interacting with other apps like typing). // Intentional. It uses HyprlandFocusGrab for managing shown/hidden states.
|
||||||
- [ ] Dock apps are clickable and navigates to app (good). If two instances are available, this feels arbitrarily chosen on one instance (maybe defaults to workspace closest to 1?) (like a selection or hover to see options).
|
|
||||||
- [ ] Dock cannot be closed with escape, user needs to click to leave Dock (Dock stops user from interacting with other apps like typing).
|
|
||||||
- [ ] Global shortcut for opening Dock and perhaps keyboard navigation? (sounds hard to pull of)
|
- [ ] Global shortcut for opening Dock and perhaps keyboard navigation? (sounds hard to pull of)
|
||||||
- [ ] If nc or osd global shortcut are used, bar is 100% transparent apart from modules, seems to ignore the regular hover state opacity.
|
- [ ] If nc or osd global shortcut are used, bar is 100% transparent apart from modules, seems to ignore the regular hover state opacity.
|
||||||
- [ ] Should volume/pipewire module be hover as well? No other bar module is hover apart from the Dock (which is a hidden module activated by hover)?
|
- [ ] Should volume/pipewire module be hover as well? No other bar module is hover apart from the Dock (which is a hidden module activated by hover)? // Unsure, probably
|
||||||
- [ ] Calendar swipe to other month has no animation -> on purpose?
|
|
||||||
|
- [x] Undo option for Drawing tool? // You can clear on right-click. True undo
|
||||||
|
would require me to store pen strokes in an array and is too advanced for a
|
||||||
|
simple drawing tool
|
||||||
|
- [x] Size 1-45 kinda weird numbers (not a real issue = ragebait). // It's just
|
||||||
|
the pixel width of the pencil.
|
||||||
|
- [x] Calendar swipe to other month has no animation -> on purpose? // On
|
||||||
|
purpose, QT doesn't allow for animations in their calendar grid. I used to have
|
||||||
|
an animation but it was extremely inefficient performance-wise.
|
||||||
|
|
||||||
## Additional questions
|
## Additional questions
|
||||||
|
|
||||||
- [ ] Can some features be disabled? As in, will they be unloaded from RAM or how is it loaded in memory? Let's say I do not want to use the Dock and Drawing Tool and want to disable them, are they loaded in memory at all? Or all the called upon when the shortcut is hit?
|
- [x] Can some features be disabled? As in, will they be unloaded from RAM or how is it loaded in memory? Let's say I do not want to use the Dock and Drawing Tool and want to disable them, are they loaded in memory at all? Or all the called upon when the shortcut is hit? // None of the modules that are not shown on start are loaded into memory save for notifications. I will make the options to disable different parts functional at some point, but it wouldn't help memory usage since they are loaded on-demand already
|
||||||
|
|||||||
Reference in New Issue
Block a user