summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2017-02-01 10:28:58 +0000
committerMiklos Vajna <vmiklos@collabora.co.uk>2017-02-02 16:57:43 +0000
commit38e7b2db19b85088cdf98dc1a8080e54f92c8714 (patch)
treef6a0a534278587954dd20a070923c0e792f1f621
parente1fd838dec4ae012841ba433409fe6f8d32172f1 (diff)
Resolves: tdf#100438 focus trapped in disabled toolbar
lets just leave the toolbar active the whole time, seems to make more sense anyway wrt being allowed to keyboard into it to paste/insert special character Change-Id: I174fb707c4c7fd21d95461cc93323eb6d8970818 (cherry picked from commit 4bd53cd880ecfa9af27735344bf57fb45de20c25) Reviewed-on: https://gerrit.libreoffice.org/33785 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk>
-rw-r--r--cui/source/dialogs/SpellDialog.cxx9
1 files changed, 0 insertions, 9 deletions
diff --git a/cui/source/dialogs/SpellDialog.cxx b/cui/source/dialogs/SpellDialog.cxx
index e0bdeb0ed249..a4e83e5b3c48 100644
--- a/cui/source/dialogs/SpellDialog.cxx
+++ b/cui/source/dialogs/SpellDialog.cxx
@@ -436,7 +436,6 @@ void SpellDialog::SpellContinue_Impl(bool bUseSavedSentence, bool bIgnoreCurrent
*/
IMPL_LINK_NOARG( SpellDialog, InitHdl, void*, void)
{
- m_pToolbar->Disable();
SetUpdateMode( false );
//show or hide AutoCorrect depending on the modules abilities
m_pAutoCorrPB->Show(rParent.HasAutoCorrection());
@@ -1523,14 +1522,6 @@ bool SentenceEditWindow_Impl::PreNotify( NotifyEvent& rNEvt )
else
bChange = false;
}
- else if (rNEvt.GetType() == MouseNotifyEvent::GETFOCUS && m_xToolbar)
- {
- m_xToolbar->Enable();
- }
- else if(rNEvt.GetType() == MouseNotifyEvent::LOSEFOCUS && m_xToolbar)
- {
- m_xToolbar->Disable();
- }
return bChange || VclMultiLineEdit::PreNotify(rNEvt);
}