Add a information message in the filename editor window

This commit is contained in:
lupoDharkael
2017-07-25 12:51:02 +02:00
parent dc005f6cf0
commit abedbdc749
4 changed files with 35 additions and 13 deletions

View File

@@ -57,15 +57,15 @@ ConfigWindow::ConfigWindow(QWidget *parent) : QTabWidget(parent) {
buttonList, &ButtonListView::selectAll);
listLayout->addWidget(setAllButtons);
addTab(visuals, "Interface");
addTab(visuals, tr("Interface"));
setTabIcon(0, QIcon(modifier + "graphics.png"));
// filename
addTab(new FileNameEditor(), "Name Editor");
addTab(new FileNameEditor(), tr("Filename Editor"));
setTabIcon(1, QIcon(modifier + "name_edition.png"));
// general
addTab(new GeneneralConf(), "General");
addTab(new GeneneralConf(), tr("General"));
setTabIcon(2, QIcon(modifier + "config.png"));
show();