|
@@ -2703,6 +2703,8 @@ bool CQPasteWnd::DoActionNextDescription()
|
|
|
if (g_Opt.m_bAllwaysShowDescription)
|
|
if (g_Opt.m_bAllwaysShowDescription)
|
|
|
return false;
|
|
return false;
|
|
|
|
|
|
|
|
|
|
+ m_actions.m_handleRepeatKeys = true;
|
|
|
|
|
+
|
|
|
ARRAY Indexes;
|
|
ARRAY Indexes;
|
|
|
m_lstHeader.GetSelectionIndexes(Indexes);
|
|
m_lstHeader.GetSelectionIndexes(Indexes);
|
|
|
|
|
|
|
@@ -2748,6 +2750,8 @@ bool CQPasteWnd::DoActionPrevDescription()
|
|
|
if (g_Opt.m_bAllwaysShowDescription)
|
|
if (g_Opt.m_bAllwaysShowDescription)
|
|
|
return false;
|
|
return false;
|
|
|
|
|
|
|
|
|
|
+ m_actions.m_handleRepeatKeys = true;
|
|
|
|
|
+
|
|
|
ARRAY Indexes;
|
|
ARRAY Indexes;
|
|
|
m_lstHeader.GetSelectionIndexes(Indexes);
|
|
m_lstHeader.GetSelectionIndexes(Indexes);
|
|
|
|
|
|
|
@@ -2951,6 +2955,7 @@ bool CQPasteWnd::DoActionSelectionUp()
|
|
|
if (m_bModifersMoveActive)
|
|
if (m_bModifersMoveActive)
|
|
|
{
|
|
{
|
|
|
MoveSelection(false);
|
|
MoveSelection(false);
|
|
|
|
|
+ m_actions.m_handleRepeatKeys = true;
|
|
|
return true;
|
|
return true;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
@@ -2962,6 +2967,7 @@ bool CQPasteWnd::DoActionSelectionDown()
|
|
|
if (m_bModifersMoveActive)
|
|
if (m_bModifersMoveActive)
|
|
|
{
|
|
{
|
|
|
MoveSelection(true);
|
|
MoveSelection(true);
|
|
|
|
|
+ m_actions.m_handleRepeatKeys = true;
|
|
|
return true;
|
|
return true;
|
|
|
}
|
|
}
|
|
|
|
|
|