mirror of https://github.com/buggins/dlangide.git
file path tooltips in tabs - implement #299
This commit is contained in:
parent
63c2ec36e5
commit
bf95fe49e0
2
dub.json
2
dub.json
|
@ -12,7 +12,7 @@
|
|||
"stringImportPaths": ["views"],
|
||||
|
||||
"dependencies": {
|
||||
"dlangui": "==0.9.140",
|
||||
"dlangui": "==0.9.141",
|
||||
"dsymbol": "~>0.2.9",
|
||||
"dcd": "~>0.9.1"
|
||||
},
|
||||
|
|
|
@ -431,7 +431,7 @@ class IDEFrame : AppFrame, ProgramExecutionStatusListener, BreakpointListChangeL
|
|||
// open new file
|
||||
DSourceEdit editor = new DSourceEdit(filename);
|
||||
if (file ? editor.load(file) : editor.load(filename)) {
|
||||
_tabs.addTab(editor, toUTF32(baseName(filename)), null, true);
|
||||
_tabs.addTab(editor, toUTF32(baseName(filename)), null, true, filename.toUTF32);
|
||||
index = _tabs.tabIndex(filename);
|
||||
TabItem tab = _tabs.tab(filename);
|
||||
tab.objectParam = file;
|
||||
|
|
|
@ -1 +1 @@
|
|||
v0.7.86
|
||||
v0.7.87
|
Loading…
Reference in New Issue