Skip to content

Commit 446496f

Browse files
committed
IMPROV: changed save command history default action to overwrite instead of append
this was just too weird
1 parent 18d108d commit 446496f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

larray_editor/editor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1013,10 +1013,10 @@ def save_script(self):
10131013
group_box_layout = QGridLayout()
10141014
# overwrite
10151015
radio_button_overwrite = QRadioButton("Overwrite file")
1016+
radio_button_overwrite.setChecked(True)
10161017
group_box_layout.addWidget(radio_button_overwrite, 0, 0)
10171018
# append to
10181019
radio_button_append = QRadioButton("Append to file")
1019-
radio_button_append.setChecked(True)
10201020
group_box_layout.addWidget(radio_button_append, 0, 1)
10211021
# set layout
10221022
group_box.setLayout(group_box_layout)

0 commit comments

Comments
 (0)