Do not block sub window activation by default

If blocking is set on by default, clicking on MDI windows does not select the corresponding item in project tree.
This commit is contained in:
Magne Sjaastad 2022-11-04 15:53:54 +01:00
parent d4086ee371
commit 8dfaae512f

View File

@ -58,7 +58,7 @@
RiuMainWindowBase::RiuMainWindowBase() RiuMainWindowBase::RiuMainWindowBase()
: m_allowActiveViewChangeFromSelection( true ) : m_allowActiveViewChangeFromSelection( true )
, m_showFirstVisibleWindowMaximized( true ) , m_showFirstVisibleWindowMaximized( true )
, m_blockSubWindowActivation( true ) , m_blockSubWindowActivation( false )
, m_blockSubWindowProjectTreeSelection( false ) , m_blockSubWindowProjectTreeSelection( false )
, m_windowMenu( nullptr ) , m_windowMenu( nullptr )
, m_mdiArea( nullptr ) , m_mdiArea( nullptr )