mirror of
https://invent.kde.org/system/dolphin
synced 2024-11-05 18:47:12 +00:00
simplify alignment action strings
This commit is contained in:
parent
efbd7ec1fb
commit
a8ddc6bb67
1 changed files with 2 additions and 2 deletions
|
@ -1592,8 +1592,8 @@ void FolderView::createActions()
|
|||
|
||||
m_alignmentGroup = new QActionGroup(this);
|
||||
connect(m_alignmentGroup, SIGNAL(triggered(QAction*)), SLOT(alignmentChanged(QAction*)));
|
||||
QAction *alignLeft = m_alignmentGroup->addAction(i18nc("Align icons", "To the left"));
|
||||
QAction *alignRight = m_alignmentGroup->addAction(i18nc("Align icons", "To the right"));
|
||||
QAction *alignLeft = m_alignmentGroup->addAction(i18nc("Align icons", "Left"));
|
||||
QAction *alignRight = m_alignmentGroup->addAction(i18nc("Align icons", "Right"));
|
||||
|
||||
alignLeft->setCheckable(true);
|
||||
alignLeft->setData(QVariant::fromValue(IconView::Left));
|
||||
|
|
Loading…
Reference in a new issue