Last active
August 29, 2015 13:56
-
-
Save DinisCruz-Dev/9294163 to your computer and use it in GitHub Desktop.
Eclipse Groovy script to remove loading Icon from Default webbrowser
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def visible = false; | |
for(editor in eclipse.editors.list()) | |
if (editor.id == "org.eclipse.ui.browser.editor") | |
editor.getEditor(true).webBrowser.busy.visible = visible; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def editorReference = eclipse.editors.get("Angular with Firebase Lite"); | |
def editor = editorReference.getEditor(true); | |
def webBrowser = editor.webBrowser; | |
def busy = webBrowser.busy; | |
return busy.visible = false; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment