Skip to content

Commit

Permalink
Merge remote-tracking branch 'remotes/upstream/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
rnavagamuwa committed Aug 18, 2016
2 parents bb0747e + bb146d1 commit e64d5d7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
1 change: 0 additions & 1 deletion dashboard/src/components/widget/toolbar/che-toolbar.styl
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ $toolbar-height = 60px

.che-toolbar-title
white-space nowrap
text-transform capitalize

.che-toolbar-title-icons
margin-left 10px
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ private String formMergeMessage(@NotNull MergeResult mergeResult) {
}
}

String message = "<b>" + mergeResult.getMergeStatus().getValue() + "</b>";
String message = mergeResult.getMergeStatus().getValue();
String conflictText = conflictMessage.toString();
message += (!conflictText.isEmpty()) ? constant.mergedConflicts() : "";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -199,8 +199,7 @@ public SubversionExtension(final ActionManager actionManager,

contextGroup.getTemplatePresentation().setSVGResource(resources.svn());

DefaultActionGroup mainContextMenuGroup = (DefaultActionGroup)actionManager.getAction(IdeActions.GROUP_MAIN_CONTEXT_MENU);
mainContextMenuGroup.addSeparator();
mainContextMenuGroup.add(contextGroup);
DefaultActionGroup resourceOperationPartOfMainContextMenuGroup = (DefaultActionGroup)actionManager.getAction("resourceOperation");
resourceOperationPartOfMainContextMenuGroup.add(contextGroup);
}
}

0 comments on commit e64d5d7

Please sign in to comment.