mirror of
https://github.com/AvengeMedia/DankMaterialShell.git
synced 2025-12-10 07:25:37 -05:00
Fixes for better Virtual keyboard support and Workspace Switcher (#155)
* Disabling workspace animation if too many icons * Fixed virtual keyboard on popups and modals - Fixed VK sometimes appearing under popups and modals (that made the keyboard unusable) - Fixed VK not working on app drawer - Left comments for future changes * Added explanation for disabling animation * Fixes comments
This commit is contained in:
committed by
GitHub
parent
eecbd8c733
commit
e64124cce3
@@ -372,6 +372,8 @@ Rectangle {
|
||||
}
|
||||
|
||||
Behavior on width {
|
||||
// When having more icons, animation becomes clunky
|
||||
enabled: (!SettingsData.showWorkspaceApps || SettingsData.maxWorkspaceIcons <= 3)
|
||||
NumberAnimation {
|
||||
duration: Theme.mediumDuration
|
||||
easing.type: Theme.emphasizedEasing
|
||||
@@ -379,6 +381,8 @@ Rectangle {
|
||||
}
|
||||
|
||||
Behavior on color {
|
||||
// When having more icons, animation becomes clunky
|
||||
enabled: (!SettingsData.showWorkspaceApps || SettingsData.maxWorkspaceIcons <= 3)
|
||||
ColorAnimation {
|
||||
duration: Theme.mediumDuration
|
||||
easing.type: Theme.emphasizedEasing
|
||||
|
||||
Reference in New Issue
Block a user