mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-17 11:18:01 +00:00
little javadoc fixes in DeckEditorDraft
This commit is contained in:
@@ -57,7 +57,7 @@ import forge.view.GuiTopLevel;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* Gui_BoosterDraft class.
|
||||
* DeckEditorDraft class.
|
||||
* </p>
|
||||
*
|
||||
* @author Forge
|
||||
@@ -81,10 +81,8 @@ public class DeckEditorDraft extends DeckEditorBase {
|
||||
// Pick on left-button double click
|
||||
if (((e.getModifiers() & InputEvent.BUTTON1_MASK) != 0) && (e.getClickCount() == 2)) {
|
||||
DeckEditorDraft.this.jButtonPickClicked(null);
|
||||
} else if ((e.getModifiers() & InputEvent.BUTTON3_MASK) != 0) { // pick
|
||||
// on
|
||||
// right
|
||||
// click
|
||||
} else if ((e.getModifiers() & InputEvent.BUTTON3_MASK) != 0) {
|
||||
// pick on right click
|
||||
final JTable table = DeckEditorDraft.this.getTopTableWithCards().getTable();
|
||||
final int rowNumber = table.rowAtPoint(e.getPoint());
|
||||
// after hittest - if it was outside of rows - discard this
|
||||
|
||||
Reference in New Issue
Block a user