Skip to content
This repository was archived by the owner on Aug 28, 2020. It is now read-only.

Commit 61c9547

Browse files
committed
set default setting for break at first line
1 parent 233ba46 commit 61c9547

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

pugdebug/models/settings.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,11 @@ def setup_debugger_settings(self):
5151
if not self.application_settings.contains('idekey'):
5252
self.application_settings.setValue('idekey', 'pugdebug')
5353

54+
if not self.application_settings.contains('break_at_first_line'):
55+
# 2 is the init value because 1 is some weird
56+
# between checked and unchecked state
57+
self.application_settings.setValue('break_at_first_line', 2)
58+
5459
self.application_settings.endGroup()
5560

5661
def setup_path_settings(self):

0 commit comments

Comments
 (0)