Skip to content

Fix extra bottom spacing for QML KCMs

Ismael Asensio requested to merge work/fix_qml_bottom_spacing into master

For QWidget KCMs, the spacing between main content and general buttons is achieved via VBoxLayout.spacing.

For QML KCMs on the other hand, this spacing gets added to the button row contentMargins, so we need to remove this extra spacing to keep consistency.

QWigdets KCM (Custom Shortcuts) QML KCM (Shortcuts)
BEFORE vboxlayout_qwidgets vboxlayout_qml_before
AFTER vboxlayout_qwidgets vboxlayout_qml_after

Merge request reports