From 8a71d1bb07b6a24df3e4edbed87ce9c1a8612cbc Mon Sep 17 00:00:00 2001 From: Mohd Shahril Date: Tue, 13 Mar 2018 21:53:53 +0800 Subject: [PATCH] SectionsWidget - remove unnecessary dot checking (#392) --- src/widgets/SectionsWidget.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/widgets/SectionsWidget.cpp b/src/widgets/SectionsWidget.cpp index cd669083..45d80959 100644 --- a/src/widgets/SectionsWidget.cpp +++ b/src/widgets/SectionsWidget.cpp @@ -30,9 +30,6 @@ void SectionsWidget::refreshSections() int row = 0; for (auto section : CutterCore::getInstance()->getAllSections()) { - if (!section.name.contains(".")) - continue; - fillSections(row++, section); }