no message
This commit is contained in:
@@ -238,8 +238,10 @@ public class Precompilation extends Pass_2021<db_project_info> {
|
||||
@Override
|
||||
protected void showFinish() throws Exception {
|
||||
UI.getMainWindow().getProjectWindow().RefreshProjectTreeAndMessages();
|
||||
if (Current.HasFile())
|
||||
if (Current.HasFile()) {
|
||||
Current.getFile().form.ShowCompilationOutput();
|
||||
Current.getFile().form.FocusCompilationOut();
|
||||
}
|
||||
}
|
||||
@Override
|
||||
public void Interrupt() throws Exception {
|
||||
|
||||
@@ -52,6 +52,7 @@ public interface FileWindow extends VisualizerForm{
|
||||
void FocusArrays();
|
||||
void RefreshTabsNames();
|
||||
void FocusCompilationOut();
|
||||
void FocusCompilationErrors();
|
||||
//--
|
||||
void ShowWarningsCount();
|
||||
void ShowErrorsCount();
|
||||
|
||||
@@ -202,6 +202,10 @@ public class FileForm implements FileWindow, FormWithSplitters {
|
||||
messagesTabs.setSelectedIndex(4);
|
||||
}
|
||||
@Override
|
||||
public void FocusCompilationErrors() {
|
||||
messagesTabs.setSelectedIndex(5);
|
||||
}
|
||||
@Override
|
||||
public void ShowText() {
|
||||
UI.Clear(editorPanel);
|
||||
editorPanel.add(new RTextScrollPane(Body = new SPFEditor(file)));
|
||||
|
||||
Reference in New Issue
Block a user