no message

This commit is contained in:
2025-02-04 16:22:42 +03:00
parent 8696c7e66f
commit c2256a247b
19 changed files with 66 additions and 79 deletions

View File

@@ -1,6 +1,5 @@
package _VisualDVM.Repository;
import Common.Database.SQLITE.SQLiteDatabase;
import _VisualDVM.Global;
import _VisualDVM.Passes.PassCode;
import _VisualDVM.Repository.BugReport.BugReport;
import _VisualDVM.Repository.BugReport.BugReportsDBTable;
@@ -35,4 +34,14 @@ public class BugReportsDatabase extends SQLiteDatabase {
for (BugReport draft : drafts)
Delete(draft);
}
public void DropUI() {
SaveLastSelections();
bugReports.ClearUI();
subscribers.ClearUI();
workspaces.ClearUI();
}
public void ResetUI() {
bugReports.ShowUI();
RestoreLastSelections();
}
}