show filename in window caption

This commit is contained in:
Vadim Lopatin 2015-01-26 13:43:49 +03:00
parent 17eaa97026
commit 790a427b84
1 changed files with 3 additions and 0 deletions

View File

@ -41,6 +41,8 @@ class IDEFrame : AppFrame {
DockHost _dockHost;
TabWidget _tabs;
dstring frameWindowCaptionSuffix = "DLangIDE"d;
this(Window window) {
super();
window.mainWidget = this;
@ -117,6 +119,7 @@ class IDEFrame : AppFrame {
_wsPanel.selectItem(file);
focusEditor(file.filename);
}
window.windowCaption(tab.text.value ~ " - "d ~ frameWindowCaptionSuffix);
}
}