Skip to content

Commit

Permalink
Small fix for Select From Table Header Popup Menu
Browse files Browse the repository at this point in the history
  • Loading branch information
mparvu committed Feb 3, 2021
1 parent 553db51 commit d79e675
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
</parent>
<groupId>org.robotframework</groupId>
<artifactId>swinglibrary</artifactId>
<version>2.1.0</version>
<version>2.2.0</version>
<packaging>jar</packaging>
<name>swinglibrary</name>
<description>A Robot Framework test library for Swing UI testing</description>
Expand Down Expand Up @@ -138,7 +138,7 @@
<plugin>
<groupId>org.robotframework</groupId>
<artifactId>robotframework-maven-plugin</artifactId>
<version>1.7.1</version>
<version>1.7.2</version>
<executions>
<execution>
<goals>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ public void callPopupMenuItemOnTableHeader(Point point, String menuPath) {
JPopupMenuOperator.callPopup(
headerOperator.getSource(),
(int) point.getX(),
(int) point.getY(),
(int) point.getY() / 2,
InputEvent.BUTTON3_MASK));
JMenuItemOperator item = menuOperator.showMenuItem(menuPath,
new EqualsStringComparator());
Expand Down

0 comments on commit d79e675

Please sign in to comment.