Skip to content

Commit

Permalink
Azure gutter mark shouldn't be overlapped with formatting options or …
Browse files Browse the repository at this point in the history
…hammer icons (#546)
  • Loading branch information
maartenba authored Nov 17, 2021
1 parent ee5a29a commit 18b3940
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
<li>Azure Functions debugging support on Apple Silicon / M1 / Rosetta <a href="https://github.com/JetBrains/azure-tools-for-intellij/issues/526">#526</a></li>
<li>Extend web app/function app publishing timeout <a href="https://github.com/JetBrains/azure-tools-for-intellij/issues/530">#530</a> / <a href="https://youtrack.jetbrains.com/issue/RIDER-68824">RIDER-68824</a></li>
<li>Publishing web app does not set correct runtime version in Azure App Service <a href="https://github.com/JetBrains/azure-tools-for-intellij/issues/535">#535</a></li>
<li>Azure gutter mark shouldn't be overlapped with formatting options or hammer icons <a href="https://github.com/JetBrains/azure-tools-for-intellij/issues/545">#545</a> / <a href="https://youtrack.jetbrains.com/issue/RIDER-70842">RIDER-70842</a></li>
</ul>
</html>
]]>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,19 +80,19 @@ private IEnumerable<BulbMenuItem> GetRunMethodItems(ISolution solution,
new ExecutableItem(() => { functionAppDaemonHost.RunFunctionApp(methodName, functionName, projectFilePath); }),
new RichText(javaPropertiesLoader.GetLocalizedString("gutter.function_app.run", functionName)),
RunMarkersThemedIcons.RunThis.Id,
BulbMenuAnchors.PermanentBackgroundItems);
BulbMenuAnchors.PermanentItem);

yield return new BulbMenuItem(
new ExecutableItem(() => { functionAppDaemonHost.DebugFunctionApp(methodName, functionName, projectFilePath); }),
new RichText(javaPropertiesLoader.GetLocalizedString("gutter.function_app.debug", functionName)),
RunMarkersThemedIcons.DebugThis.Id,
BulbMenuAnchors.PermanentBackgroundItems);
BulbMenuAnchors.PermanentItem);

yield return new BulbMenuItem(
new ExecutableItem(() => { functionAppDaemonHost.TriggerFunctionApp(methodName, functionName, projectFilePath); }),
new RichText(javaPropertiesLoader.GetLocalizedString("gutter.function_app.trigger", functionName)),
FunctionAppRunMarkersThemedIcons.Trigger.Id,
BulbMenuAnchors.PermanentBackgroundItems);
BulbMenuAnchors.PermanentItem);
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
<li>Azure Functions debugging support on Apple Silicon / M1 / Rosetta <a href="https://github.com/JetBrains/azure-tools-for-intellij/issues/526">#526</a></li>
<li>Extend web app/function app publishing timeout <a href="https://github.com/JetBrains/azure-tools-for-intellij/issues/530">#530</a> / <a href="https://youtrack.jetbrains.com/issue/RIDER-68824">RIDER-68824</a></li>
<li>Publishing web app does not set correct runtime version in Azure App Service <a href="https://github.com/JetBrains/azure-tools-for-intellij/issues/535">#535</a></li>
<li>Azure gutter mark shouldn't be overlapped with formatting options or hammer icons <a href="https://github.com/JetBrains/azure-tools-for-intellij/issues/545">#545</a> / <a href="https://youtrack.jetbrains.com/issue/RIDER-70842">RIDER-70842</a></li>
</ul>
<p>[3.50.1-2021.2]</p>
<ul>
Expand Down

0 comments on commit 18b3940

Please sign in to comment.