Skip to content

Commit d4ae7bc

Browse files
committed
Fixed bug related to slot events
1 parent 74c59cd commit d4ae7bc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/widgets/containers/TabControl.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ namespace lsp
179179
// Bind slots
180180
handler_id_t id;
181181
id = sSlots.add(SLOT_CHANGE, slot_on_change, self());
182-
if (id >= 0) id = sSlots.add(SLOT_SUBMIT, slot_on_change, self());
182+
if (id >= 0) id = sSlots.add(SLOT_SUBMIT, slot_on_submit, self());
183183
if (id < 0)
184184
return -id;
185185

0 commit comments

Comments
 (0)