fix config dialogs in ltr mode

Summary:
anchor the layouts of config dialogs to left
this way they will look the same normally (they
are positioned at x 0 normally) but will be
anchored to right instead if layout mirroring is enabled

CCBUG:372721

Test Plan: opened all config dialogs both in ltr and ltr layouts

Reviewers: #plasma, davidedmundson

Reviewed By: #plasma, davidedmundson

Subscribers: plasma-devel

Tags: #plasma

Differential Revision: https://phabricator.kde.org/D3456
wilder-5.14
Marco Martin 9 years ago
parent 3c0b31ba78
commit cf2d9d9658
  1. 1
      applets/analog-clock/contents/ui/configGeneral.qml
  2. 1
      applets/calendar/package/contents/ui/configGeneral.qml
  3. 1
      applets/devicenotifier/package/contents/ui/configGeneral.qml
  4. 1
      applets/digital-clock/package/contents/ui/configAppearance.qml
  5. 1
      applets/digital-clock/package/contents/ui/configCalendar.qml
  6. 1
      applets/lock_logout/contents/ui/ConfigGeneral.qml
  7. 1
      applets/notifications/package/contents/ui/configNotifications.qml
  8. 1
      applets/systemmonitor/common/contents/ui/ConfigGeneral.qml
  9. 1
      applets/systemtray/package/contents/ui/ConfigGeneral.qml

@ -33,6 +33,7 @@ Item {
property alias cfg_showTimezoneString: showTimezoneCheckBox.checked
Column {
anchors.left: parent.left
QtControls.CheckBox {
id: showSecondHandCheckBox
text: i18n("Show seconds hand")

@ -32,6 +32,7 @@ Item {
property string cfg_compactDisplay
QtLayouts.ColumnLayout {
anchors.left: parent.left
QtControls.CheckBox {
id: showWeekNumbers
text: i18n("Show week numbers in Calendar")

@ -37,6 +37,7 @@ Item {
Layouts.ColumnLayout {
id: mainColumn
anchors.left: parent.left
Controls.ExclusiveGroup{
id: deviceFilter
}

@ -73,6 +73,7 @@ Item {
}
QtLayouts.ColumnLayout {
anchors.left: parent.left
QtControls.GroupBox {
QtLayouts.Layout.fillWidth: true
title: i18n("Font")

@ -38,6 +38,7 @@ Item {
}
QtLayouts.ColumnLayout {
anchors.left: parent.left
QtControls.CheckBox {
id: showWeekNumbers
text: i18n("Show week numbers in Calendar")

@ -56,6 +56,7 @@ Item {
QtLayouts.ColumnLayout {
id: pageColumn
anchors.left: parent.left
PlasmaExtras.Heading {
text: i18nc("Heading for list of actions (leave, lock, shutdown, ...)", "Actions")
color: syspal.text

@ -37,6 +37,7 @@ Item {
property alias cfg_showJobs: showJobsCheckBox.checked
QtLayouts.ColumnLayout {
anchors.left: parent.left
QtControls.CheckBox {
id: showNotificationsCheckBox
text: i18n("Show application and system notifications")

@ -100,6 +100,7 @@ Item {
Layouts.ColumnLayout {
id: mainColumn
anchors.left: parent.left
Repeater {
id: repeater

@ -49,6 +49,7 @@ Item {
QtLayouts.ColumnLayout {
id: pageColumn
anchors.left: parent.left
PlasmaExtras.Heading {
level: 2

Loading…
Cancel
Save