Skip to content

Commit

Permalink
Fix copy
Browse files Browse the repository at this point in the history
  • Loading branch information
vlaaad committed Oct 29, 2022
1 parent 6afa502 commit 21d36b9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/cljfx/dev/validation.clj
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,8 @@
(pr-str x))))

(defn- on-inspector-table-key-pressed [^KeyEvent e]
(when (= KeyCode/C (.getCode e))
(when (and (.isShortcutDown e) (= KeyCode/C (.getCode e)))
(.consume e)
(let [^TableView table (.getTarget e)
^TablePosition pos (first (.getSelectedCells (.getSelectionModel table)))]
(.setContent
Expand Down

0 comments on commit 21d36b9

Please sign in to comment.