Skip to content

Commit

Permalink
Merge pull request #1590 from rstudio/bugfix/flat-theme-rsconnect-plo…
Browse files Browse the repository at this point in the history
…ts-menu

Fix retina icon while republishing rsconnect plot to fix #1585
  • Loading branch information
jmcphers committed Oct 11, 2017
2 parents 2ac288b + 7aaa048 commit 3337912
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -18,6 +18,7 @@

import org.rstudio.core.client.StringUtil;
import org.rstudio.core.client.command.AppCommand;
import org.rstudio.core.client.resources.ImageResource2x;
import org.rstudio.core.client.widget.OperationWithInput;
import org.rstudio.core.client.widget.ToolbarPopupMenu;
import org.rstudio.studio.client.rsconnect.ui.RSConnectResources;
Expand Down Expand Up @@ -96,7 +97,7 @@ public void addPlotMruEntries(ToolbarPopupMenu menu,
displayName += " (" + mruEntry.server + ")";

menu.addItem(new MenuItem(AppCommand.formatMenuLabel(
RSConnectResources.INSTANCE.republishPlot2x(),
new ImageResource2x(RSConnectResources.INSTANCE.republishPlot2x()),
displayName, null), true,
new Command()
{
Expand Down

0 comments on commit 3337912

Please sign in to comment.