We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 59597b2 commit b4d19ccCopy full SHA for b4d19cc
src/plugins/browser/android/com/foxdebug/browser/Browser.java
@@ -632,6 +632,12 @@ public void onPageFinished(WebView view, String url) {
632
public void onReceiveValue(String value) {
633
boolean show = !value.equals("null");
634
browser.menu.setVisible("Console", show && !browser.emulator);
635
+
636
+ // If user had toggled "Console" on before, re-show it
637
+ if (browser.console && show) {
638
+ browser.setConsoleVisible(true);
639
+ browser.menu.setChecked("Console", true);
640
+ }
641
}
642
643
);
0 commit comments