From a60697fa1e99b5ba9f10abbaa72785eb365fbba5 Mon Sep 17 00:00:00 2001 From: lupoDharkael Date: Mon, 1 Jan 2018 17:27:08 +0100 Subject: [PATCH] CaptureWidget: Add missing member initialization --- src/capture/widget/capturewidget.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/capture/widget/capturewidget.cpp b/src/capture/widget/capturewidget.cpp index 2f11394d..54a328a8 100644 --- a/src/capture/widget/capturewidget.cpp +++ b/src/capture/widget/capturewidget.cpp @@ -54,8 +54,9 @@ CaptureWidget::CaptureWidget(const uint id, const QString &forcedSavePath, QWidget *parent) : QWidget(parent), m_screenshot(nullptr), m_mouseOverHandle(0), m_mouseIsClicked(false), m_rightClick(false), m_newSelection(false), - m_grabbing(false), m_captureDone(false), m_forcedSavePath(forcedSavePath), - m_id(id), m_state(CaptureButton::TYPE_MOVESELECTION) + m_grabbing(false), m_captureDone(false), m_toolIsForDrawing(false), + m_forcedSavePath(forcedSavePath), m_id(id), + m_state(CaptureButton::TYPE_MOVESELECTION) { m_showInitialMsg = m_config.showHelpValue(); m_thickness = m_config.drawThicknessValue();