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