From ae3aff7ea0441cc140643c002dc951fe12ccdcd2 Mon Sep 17 00:00:00 2001 From: Jean Pierre Cimalando Date: Wed, 14 Apr 2021 11:24:45 +0200 Subject: [PATCH] Work around the blink of top-left logo --- plugins/editor/src/editor/Editor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/editor/src/editor/Editor.cpp b/plugins/editor/src/editor/Editor.cpp index 50e42665..1e5850aa 100644 --- a/plugins/editor/src/editor/Editor.cpp +++ b/plugins/editor/src/editor/Editor.cpp @@ -644,7 +644,7 @@ void Editor::Impl::createFrameContents() return box; }; auto createAboutButton = [this, &iconShaded](const CRect& bounds, int tag, const char*, CHoriTxtAlign, int) { - return new CKickButton(bounds, this, tag, iconShaded); + return new CKickButton(bounds, this, tag, 0.0f, iconShaded); }; auto createLabel = [this, &palette](const CRect& bounds, int, const char* label, CHoriTxtAlign align, int fontsize) { CTextLabel* lbl = new CTextLabel(bounds, label);