Revision: 6632
http://squirrel-sql.svn.sourceforge.net/squirrel-sql/?rev=6632&view=rev
Author: gerdwagner
Date: 2012-06-08 16:18:54 +0000 (Fri, 08 Jun 2012)
Log Message:
-----------
Graph Plugin: Tables can be selected by rectangle selection like icons on a desktop of modern operating systems.
Modified Paths:
--------------
trunk/sql12/fw/src/main/java/net/sourceforge/squirrel_sql/fw/gui/RectangleSelectionHandler.java
Modified: trunk/sql12/fw/src/main/java/net/sourceforge/squirrel_sql/fw/gui/RectangleSelectionHandler.java
===================================================================
--- trunk/sql12/fw/src/main/java/net/sourceforge/squirrel_sql/fw/gui/RectangleSelectionHandler.java 2012-06-07 21:14:53 UTC (rev 6631)
+++ trunk/sql12/fw/src/main/java/net/sourceforge/squirrel_sql/fw/gui/RectangleSelectionHandler.java 2012-06-08 16:18:54 UTC (rev 6632)
@@ -97,7 +97,7 @@
private void initBeginPoint(MouseEvent e)
{
- if (InputEvent.BUTTON1_MASK == e.getModifiers() && 0 == (e.getModifiers() & MouseEvent.CTRL_MASK))
+ if (SwingUtilities.isLeftMouseButton(e) && 0 == (e.getModifiers() & MouseEvent.CTRL_MASK))
{
_dragBeginPoint = e.getPoint();
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|