+ fixes #0001448: Newly created python macros don't have an asterisk in their window title.
This commit is contained in:
parent
19619c03a0
commit
8f2604a694
|
@ -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();
|
||||
|
|
Loading…
Reference in New Issue
Block a user