mirror of
https://github.com/ViaVersion/ViaProxy.git
synced 2025-04-03 18:29:42 -04:00
Added double click to AccountsTab
This commit is contained in:
parent
6dd76b46ad
commit
3f899f1d92
1 changed files with 3 additions and 0 deletions
|
@ -92,6 +92,9 @@ public class AccountsTab extends AUITab {
|
|||
if (SwingUtilities.isRightMouseButton(e)) {
|
||||
int row = accountsList.locationToIndex(e.getPoint());
|
||||
accountsList.setSelectedIndex(row);
|
||||
} else if (e.getClickCount() == 2) {
|
||||
int index = accountsList.getSelectedIndex();
|
||||
if (index != -1) markSelected(index);
|
||||
}
|
||||
}
|
||||
});
|
||||
|
|
Loading…
Add table
Reference in a new issue