From 1dcf78b6381434a4ab3947b2aa39cf29bcac3801 Mon Sep 17 00:00:00 2001 From: MaxFleur Date: Tue, 3 Feb 2026 17:11:35 +0100 Subject: [PATCH] [fix][ui] Did not correctly enable ok button for conversion tools when valid source file was selected --- src/ui/HelperWidgets/TopicComboBoxWidget.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/ui/HelperWidgets/TopicComboBoxWidget.cpp b/src/ui/HelperWidgets/TopicComboBoxWidget.cpp index 07502eb..d35eb0f 100644 --- a/src/ui/HelperWidgets/TopicComboBoxWidget.cpp +++ b/src/ui/HelperWidgets/TopicComboBoxWidget.cpp @@ -70,4 +70,5 @@ TopicComboBoxWidget::findSourceButtonPressed() Utils::UI::createCriticalMessageBox("Topic not found!", "The bag file does not contain any corresponding topics!"); return; } + enableOkButton(!m_parameters.sourceDirectory.isEmpty() && !m_parameters.topicName.isEmpty() && !m_parameters.targetDirectory.isEmpty()); }