Refactor logic for advanced search to make it re-usable for desktop

This commit is contained in:
drdev
2015-09-07 23:40:06 +00:00
parent 33ad02e56f
commit 048eb19bb8
5 changed files with 337 additions and 230 deletions

View File

@@ -273,4 +273,9 @@ public class GuiDesktop implements IGuiBase {
return match;
}
@Override
public void runBackgroundTask(String message, Runnable task) {
//TODO: Show loading overlay
FThreads.invokeInBackgroundThread(task);
}
}