Skip to content

Commit

Permalink
Update README
Browse files Browse the repository at this point in the history
  • Loading branch information
romainguy committed May 11, 2024
1 parent 256e156 commit 185d45c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ which panels are visible using the *View* menu.
panels. This feature may require R8 optimizations to be turned off to work properly.
- *View > Presentation Mode*: increase the font size to make the content more visible
when projected.
- *Build > Build on Startup*: to automatically launch a compilation when launching the
app.
- Clicking a jump instruction will show an arrow to the jump destination.

# Running Kotlin Explorer
Expand Down
2 changes: 1 addition & 1 deletion src/jvmMain/kotlin/dev/romainguy/kotlin/explorer/State.kt
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ class ExplorerState {
var optimize by BooleanState(Optimize, true)
var autoBuildOnStartup by BooleanState(AutoBuildOnStartup, false)
var presentationMode by BooleanState(Presentation, false)
var showLineNumbers by BooleanState(ShowLineNumbers, true)
var showLineNumbers by BooleanState(ShowLineNumbers, false)
var showByteCode by BooleanState(ShowByteCode, false)
var showDex by BooleanState(ShowDex, true)
var showOat by BooleanState(ShowOat, true)
Expand Down

0 comments on commit 185d45c

Please sign in to comment.