Skip to content

Commit

Permalink
Fix: Gradle refresh executes all opened Gradle projects' refresh acti…
Browse files Browse the repository at this point in the history
…ons (reference #547)
  • Loading branch information
rat-moonshine committed May 23, 2019
1 parent c22e511 commit 66d6fdd
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,10 @@ package actionScripts.languageServer

private function onGradleClassPathRefresh(event:Event):void
{
restartLanguageServer()
if (_model.activeProject == _project)
{
restartLanguageServer();
}
}

private function requireUpdateGradleClasspath():Boolean
Expand Down
2 changes: 1 addition & 1 deletion ide/MoonshineSharedCore/src/components/MainEntryPoint.mxml
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@
horizontalCenter="0" verticalCenter="0"
includeInLayout="{ConstantsCoreVO.IS_APPLICATION_CLOSING}" visible="{ConstantsCoreVO.IS_APPLICATION_CLOSING}">
<s:backgroundFill>
<s:SolidColor color="0x373737"/>
<s:SolidColor color="0x333333"/>
</s:backgroundFill>
<s:Label text="Preparing to close.. Please wait."
paddingBottom="10" paddingLeft="10" paddingRight="10" paddingTop="10"
Expand Down

0 comments on commit 66d6fdd

Please sign in to comment.