kopia lustrzana https://github.com/maccasoft/z80-tools
Check if file is already open
rodzic
96fd4a4c49
commit
a8cd985d0a
|
@ -1189,6 +1189,17 @@ public class Application {
|
||||||
}
|
}
|
||||||
|
|
||||||
void openSourceTab(File file) {
|
void openSourceTab(File file) {
|
||||||
|
CTabItem[] tabItem = tabFolder.getItems();
|
||||||
|
for (int i = 0; i < tabItem.length; i++) {
|
||||||
|
SourceEditorTab tab = (SourceEditorTab) tabItem[i].getData();
|
||||||
|
if (file.equals(tab.getFile())) {
|
||||||
|
tabFolder.setSelection(tab.getTabItem());
|
||||||
|
if (tabFolder.getSelection() != null) {
|
||||||
|
tabFolder.getSelection().getControl().setFocus();
|
||||||
|
}
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
BusyIndicator.showWhile(display, new Runnable() {
|
BusyIndicator.showWhile(display, new Runnable() {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
Ładowanie…
Reference in New Issue