https://bugs.kde.org/show_bug.cgi?id=456568

Enes Albay <albaye...@gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |albaye...@gmail.com

--- Comment #10 from Enes Albay <albaye...@gmail.com> ---
There is QML Buttons on the form which is responsible for buttons

./kde/src/plasma-workspace/kcms/lookandfeel/package/contents/ui/main.qml:116

QtControls.Button {
                    id: proceedButton
                    text: i18n("Apply")
                    icon.name: "dialog-ok-apply"
                    onClicked: {
                        kcm.save()
                        globalThemeConfirmSheet.close()
                        view.forceActiveFocus() //Prevent further button
presses via keyboard
                    }
                    enabled: kcm.appearanceToApply &
Private.LookandFeelManager.AppearanceSettings ||
                        kcm.layoutToApply &
Private.LookandFeelManager.LayoutSettings ||
                        kcm.layoutToApply &
Private.LookandFeelManager.DesktopLayout
                }

QML Button does not show underline of the text when the Alt key is pressed.
Ampersand may be added before "Apply" to force the form in order to use <Alt>A
as accelerator. But as I mentioned earlier, QML Button does not show
underlines. I do not know why qt removed this feature. Maybe I am missing
something.

-- 
You are receiving this mail because:
You are watching all bug changes.

Reply via email to