Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
uaraven committed Oct 24, 2020
1 parent a604622 commit b83a638
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ plugins {
mainClassName = 'net.ninjacat.headlights.AppKt'

group 'net.ninjacat'
version '0.2.0'
version '0.3.0'

repositories {
mavenCentral()
Expand Down
2 changes: 1 addition & 1 deletion src/main/kotlin/net/ninjacat/headlights/ui/OutputPane.kt
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ class OutputPane : TabPane() {
errors.columns.addAll(columnPosition, columnMessage)
errors.placeholder = Label("")

errors.setRowFactory { _ ->
errors.setRowFactory {
val row = TableRow<ErrorMessage>()
row.onMouseClicked = EventHandler { event ->
if (!row.isEmpty && event.button == MouseButton.PRIMARY && event.clickCount == 2) {
Expand Down

0 comments on commit b83a638

Please sign in to comment.