Skip to content

Commit

Permalink
Merge pull request #4641 from bamaer/4640
Browse files Browse the repository at this point in the history
inverted/corrected positions for zoom in and out. fixes #4640
  • Loading branch information
hansva authored Nov 29, 2024
2 parents 97e4c4e + c7fa00d commit 83d7101
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -244,9 +244,9 @@ public class HopGuiPipelineGraph extends HopGuiAbstractGraph
public static final String TOOLBAR_ITEM_ZOOM_LEVEL =
"HopGuiPipelineGraph-ToolBar-10500-Zoom-Level";

public static final String TOOLBAR_ITEM_ZOOM_IN = "HopGuiPipelineGraph-ToolBar-10510-Zoom-In";
public static final String TOOLBAR_ITEM_ZOOM_OUT = "HopGuiPipelineGraph-ToolBar-10510-Zoom-Out";

public static final String TOOLBAR_ITEM_ZOOM_OUT = "HopGuiPipelineGraph-ToolBar-10520-Zoom-Out";
public static final String TOOLBAR_ITEM_ZOOM_IN = "HopGuiPipelineGraph-ToolBar-10520-Zoom-In";

public static final String TOOLBAR_ITEM_ZOOM_100PCT =
"HopGuiPipelineGraph-ToolBar-10530-Zoom-100Pct";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -211,9 +211,9 @@ public class HopGuiWorkflowGraph extends HopGuiAbstractGraph
public static final String TOOLBAR_ITEM_ZOOM_LEVEL =
"HopGuiWorkflowGraph-ToolBar-10500-Zoom-Level";

public static final String TOOLBAR_ITEM_ZOOM_IN = "HopGuiWorkflowGraph-ToolBar-10510-Zoom-In";
public static final String TOOLBAR_ITEM_ZOOM_OUT = "HopGuiWorkflowGraph-ToolBar-10510-Zoom-Out";

public static final String TOOLBAR_ITEM_ZOOM_OUT = "HopGuiWorkflowGraph-ToolBar-10520-Zoom-Out";
public static final String TOOLBAR_ITEM_ZOOM_IN = "HopGuiWorkflowGraph-ToolBar-10520-Zoom-In";

public static final String TOOLBAR_ITEM_ZOOM_100PCT =
"HopGuiWorkflowGraph-ToolBar-10530-Zoom-100Pct";
Expand Down

0 comments on commit 83d7101

Please sign in to comment.