From b36aa057e89783d3def529b37a0fabe032f4916e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20T=C5=AFma?= Date: Mon, 12 Jul 2021 12:07:09 +0200 Subject: [PATCH] Added missing placeholder text --- src/GUI/dirselectwidget.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/GUI/dirselectwidget.cpp b/src/GUI/dirselectwidget.cpp index d62fecb9..f082fd6c 100644 --- a/src/GUI/dirselectwidget.cpp +++ b/src/GUI/dirselectwidget.cpp @@ -13,6 +13,7 @@ DirSelectWidget::DirSelectWidget(QWidget *parent) : QWidget(parent) _edit = new QLineEdit(); _edit->setMinimumWidth(fm.averageCharWidth() * (QDir::homePath().length() + 12)); + _edit->setPlaceholderText(tr("System default")); #ifdef Q_OS_WIN32 _button = new QPushButton("..."); _button->setMaximumWidth(_button->sizeHint().width() / 2);