Skip to content

Commit cd91519

Browse files
committed
fix: disable auto-refresh by default
1 parent 3f1c6de commit cd91519

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/kotlin/com/github/xepozz/php_dump/configuration/PhpDumpSettingsService.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class PhpDumpSettingsService : SimplePersistentStateComponent<PhpDumpSettingsSer
1616
class State : BaseState() {
1717
var debugLevel: String? by string(PhpOpcacheDebugLevel.BEFORE_OPTIMIZATION.value)
1818
var preloadFile: String? by string(null)
19-
var autoRefresh: Boolean by property(true)
19+
var autoRefresh: Boolean by property(false)
2020
var tokensObject: Boolean by property(true)
2121
}
2222

0 commit comments

Comments
 (0)