1
0
mirror of https://github.com/gnosygnu/xowa.git synced 2026-03-02 03:49:30 +00:00

Search: Wait for page to load before displaying search results [#606]

This commit is contained in:
gnosygnu
2019-11-17 15:57:35 -05:00
parent e2aa551feb
commit 5ddf50d5b5
4 changed files with 15 additions and 3 deletions

View File

@@ -19,9 +19,11 @@ public class Xopg_tab_data {
public Xog_tab_itm Tab() {return tab;} public void Tab_(Xog_tab_itm v) {this.tab = v;} private Xog_tab_itm tab;
public boolean Cancel_show() {return cancel_show;} public void Cancel_show_y_() {this.cancel_show = true;} private boolean cancel_show; // used for Special:Search
public Xog_tab_close_mgr Close_mgr() {return close_mgr;} private final Xog_tab_close_mgr close_mgr = new Xog_tab_close_mgr();
public boolean Gui_loaded() {return gui_loaded;} private boolean gui_loaded; public void Gui_loaded_y_() {gui_loaded = true;}
public void Clear() {
this.cancel_show = false;
this.tab = null;
close_mgr.Clear();
this.gui_loaded = false;
}
}