1
0
mirror of https://github.com/gnosygnu/xowa.git synced 2026-03-02 03:49:30 +00:00
This commit is contained in:
gnosygnu
2014-08-10 23:10:23 -04:00
parent fb8c06c560
commit 67b04263a7
131 changed files with 2285 additions and 1355 deletions

View File

@@ -30,7 +30,8 @@ public class Swt_app_main {
public static void main(String[] args) {
// Drag_drop();
// List_fonts();
keystrokes(args);
// keystrokes(args);
Permission_denied();
}
static void Drag_drop() {
final Display display = new Display();

View File

@@ -228,7 +228,9 @@ class Swt_html_lnr_location implements LocationListener {
String location = arg.location;
if (String_.Eq(location, "about:blank")) return; // location changing event fires once when page is loaded; ignore
if ( html_box.Html_doc_html_load_tid() == Gxw_html_load_tid_.Tid_url // navigating to file://page.html will fire location event; ignore if url mode
&& String_.HasAtEnd(location, ".html"))
&& String_.HasAtBgn(location, "file:")
&& String_.HasAtEnd(location, ".html")
)
return;
try {
GfoEvMgr_.PubObj(host, evt, "v", location);