Skip to content

Commit

Permalink
Fix CSS load order so fonts load last (resizing)
Browse files Browse the repository at this point in the history
  • Loading branch information
mvarela authored and jpmonettas committed Nov 1, 2023
1 parent 4a1f81c commit f16cd41
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src-dbg/flow_storm/debugger/state.clj
Original file line number Diff line number Diff line change
Expand Up @@ -332,9 +332,9 @@
extra-styles (when extra-styles
(str (io/as-url (io/file extra-styles))))]
(cond-> [theme-base-styles
default-styles
font-size-style]
extra-styles (conj extra-styles))))
default-styles]
extra-styles (conj extra-styles)
true (conj font-size-style))))

;;;;;;;;;;;;;;;;;;;;;;;
;; JFX objects index ;;
Expand Down

0 comments on commit f16cd41

Please sign in to comment.