Skip to content

Commit

Permalink
adjust toolbar separator
Browse files Browse the repository at this point in the history
  • Loading branch information
novakps committed Jan 17, 2011
1 parent d227ec2 commit 3791a8e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions kemia/controller/defaulttoolbar.js
Original file line number Diff line number Diff line change
Expand Up @@ -109,8 +109,6 @@ kemia.controller.DefaultToolbar.makeZoomButtons = function(buttons) {
kemia.controller.plugins.Zoom.COMMAND.ZOOM_OUT, 'Zoom Out', '',
goog.getCssName('tr-icon') + ' ' + goog.getCssName('tr-zoom-out')));

buttons.push(new goog.ui.ToolbarSeparator());

var reagents_button = kemia.controller.ToolbarFactory.makeToggleButton(
kemia.controller.plugins.View.COMMAND.SHOW_REAGENTS,
'toggle visibility of Reagents text',
Expand All @@ -126,6 +124,8 @@ kemia.controller.DefaultToolbar.makeZoomButtons = function(buttons) {
conditions_button.queryable = true;
buttons.push(conditions_button);

buttons.push(new goog.ui.ToolbarSeparator());

return buttons;
};

Expand Down

0 comments on commit 3791a8e

Please sign in to comment.