Skip to content

Commit

Permalink
v21.12.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Grigory-Rylov committed Dec 10, 2021
1 parent 653ba13 commit ff76366
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
3 changes: 2 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
}

group 'com.github.grishberg.android'
version '21.12.09.1'
version '21.12.10.0'

sourceCompatibility = 8
targetCompatibility = 8
Expand Down Expand Up @@ -78,5 +78,6 @@ patchPluginXml {
changeNotes """
Fixed screenshot offset in landscape on phones with cutouts.<br>
Fix propertie panel invalidation.<br>
Copy id by ctrl(cmd) + c.<br>
"""
}
Original file line number Diff line number Diff line change
Expand Up @@ -34,19 +34,19 @@ class TreePanel(
) : JTree(DefaultMutableTreeNode()) {
var nodeSelectedAction: OnNodeSelectedAction? = null
private var selectedFromLayoutClick = false
private val copyTypeStroke =
KeyStroke.getKeyStroke(KeyEvent.VK_C, Toolkit.getDefaultToolkit().menuShortcutKeyMask, false)

private val copyFullNameStroke = KeyStroke.getKeyStroke(
private val copyTypeStroke = KeyStroke.getKeyStroke(
KeyEvent.VK_C,
Toolkit.getDefaultToolkit().menuShortcutKeyMask + ActionEvent.SHIFT_MASK,
Toolkit.getDefaultToolkit().menuShortcutKeyMask + ActionEvent.ALT_MASK,
false
)
private val copyIdStroke = KeyStroke.getKeyStroke(

private val copyFullNameStroke = KeyStroke.getKeyStroke(
KeyEvent.VK_C,
Toolkit.getDefaultToolkit().menuShortcutKeyMask + ActionEvent.ALT_MASK,
Toolkit.getDefaultToolkit().menuShortcutKeyMask + ActionEvent.SHIFT_MASK,
false
)
private val copyIdStroke =
KeyStroke.getKeyStroke(KeyEvent.VK_C, Toolkit.getDefaultToolkit().menuShortcutKeyMask, false)

private val foundItems = mutableListOf<ViewNode>()
private var viewNodeRenderer = NodeViewTreeCellRenderer(foundItems, theme, bookmarks)
Expand Down

0 comments on commit ff76366

Please sign in to comment.