-
Notifications
You must be signed in to change notification settings - Fork 241
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add actions to copy logical / physical names to stack viewer #2165
Conversation
/runUiTests |
6a95a4f
to
ba2f71f
Compare
e0dedd0
to
8e72aab
Compare
/runUiTests |
fun addMouseListener(listener: MouseListener) = table.addMouseListener(listener) | ||
|
||
fun selectedRow(): Map<Field<T>, Any?>? { | ||
val row = table.selectedRows?.takeIf { it.size == 1 }?.first() ?: return null |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: first
seems like it is safe but would still like firstOrNull
to guarantee it doesn't throw randomly
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
sure
eb1acdc
to
7c7ed56
Compare
/runUiTest |
7c7ed56
to
afbcff1
Compare
598d23d
to
34861b4
Compare
Kudos, SonarCloud Quality Gate passed!
|
Types of changes