From 451d202be590c15b66085fc1abe6dc93c8164689 Mon Sep 17 00:00:00 2001 From: Joseph Lenox Date: Mon, 4 Jun 2018 16:25:06 -0500 Subject: [PATCH] Properly initialize the toolbar state on start --- src/GUI/Plater.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/GUI/Plater.cpp b/src/GUI/Plater.cpp index 83d937d41..77a213680 100644 --- a/src/GUI/Plater.cpp +++ b/src/GUI/Plater.cpp @@ -233,6 +233,9 @@ Plater::Plater(wxWindow* parent, const wxString& title, std::shared_ptrSetSizeHints(this); this->SetSizer(sizer); + // Initialize the toolbar + this->selection_changed(); + } void Plater::add() { Log::info(LogChannel, L"Called Add function");