Skip to content

Commit cf0f6fc

Browse files
Update gguf-py/gguf/scripts/gguf_editor_gui.py
Co-authored-by: Sigbjørn Skjæret <[email protected]>
1 parent af8d354 commit cf0f6fc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gguf-py/gguf/scripts/gguf_editor_gui.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -593,7 +593,7 @@ def bulk_edit_selected(self):
593593
buttons.rejected.connect(dialog.reject)
594594
layout.addWidget(buttons)
595595

596-
if dialog.exec_() == QDialog.DialogCode.Accepted:
596+
if dialog.exec() == QDialog.DialogCode.Accepted:
597597
# Get the selected value
598598
new_value = combo.currentData()
599599
enum_val = self.enum_type(new_value)

0 commit comments

Comments
 (0)