- Fix grammar of a label
- Add labels that show activation shortcuts svn path=/trunk/KDE/kdebase/workspace/; revision=715559
This commit is contained in:
parent
4ae6c8c382
commit
a868d01413
1 changed files with 9 additions and 2 deletions
|
@ -42,13 +42,20 @@ PresentWindowsEffectConfig::PresentWindowsEffectConfig(QWidget* parent, const QV
|
|||
connect(mActivateCombo, SIGNAL(currentIndexChanged(int)), this, SLOT(changed()));
|
||||
layout->addWidget(mActivateCombo, 1, 2);
|
||||
|
||||
layout->addWidget(new QLabel(i18n("for windows all desktop: "), this), 2, 1);
|
||||
layout->addWidget(new QLabel(i18n("for windows on all desktops: "), this), 2, 1);
|
||||
mActivateAllCombo = new QComboBox;
|
||||
addItems(mActivateAllCombo);
|
||||
connect(mActivateAllCombo, SIGNAL(currentIndexChanged(int)), this, SLOT(changed()));
|
||||
layout->addWidget(mActivateAllCombo, 2, 2);
|
||||
|
||||
layout->addItem(new QSpacerItem(10, 10, QSizePolicy::Minimum, QSizePolicy::Expanding), 3, 0, 1, 3);
|
||||
layout->addItem(new QSpacerItem(10, 10, QSizePolicy::Fixed, QSizePolicy::Expanding), 3, 0, 1, 3);
|
||||
|
||||
layout->addWidget(new QLabel(i18n("Activation shortcuts:"), this), 4, 0, 1, 3);
|
||||
layout->addItem(new QSpacerItem(10, 10, QSizePolicy::Fixed), 5, 0, 2, 1);
|
||||
layout->addWidget(new QLabel(i18n("for windows on current desktop: Ctrl+F10"), this), 5, 1, 1, 2);
|
||||
layout->addWidget(new QLabel(i18n("for windows on all desktops: Ctrl+F11"), this), 6, 1, 1, 2);
|
||||
|
||||
layout->addItem(new QSpacerItem(10, 10, QSizePolicy::Minimum, QSizePolicy::Expanding), 7, 0, 1, 3);
|
||||
|
||||
load();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue