+ fixes #0001448: Newly created python macros don't have an asterisk in their window title.

This commit is contained in:
wmayer 2014-02-28 11:30:04 +01:00
parent 19619c03a0
commit 8f2604a694

View File

@ -185,7 +185,7 @@ void DlgMacroExecuteImp::on_createButton_clicked()
editor->setWindowIcon(Gui::BitmapFactory().pixmap("python_small"));
PythonEditorView* edit = new PythonEditorView(editor, getMainWindow());
edit->open(fi.absoluteFilePath());
edit->setWindowTitle(fn);
edit->setWindowTitle(QString::fromAscii("%1[*]").arg(fn));
edit->resize(400, 300);
getMainWindow()->addWindow(edit);
close();