Kaydet (Commit) c5a7006d authored tarafından Caolán McNamara's avatar Caolán McNamara Kaydeden (comit) Andras Timar

Resolves: tdf#92082 crash on closing color bar after redocking it

Change-Id: I015306a37abeaef17830ceab0f39cb2f3a98155c
(cherry picked from commit 14aa5c58)
üst 6895418a
...@@ -492,14 +492,15 @@ void SvxColorDockingWindow::Resize() ...@@ -492,14 +492,15 @@ void SvxColorDockingWindow::Resize()
SfxDockingWindow::Resize(); SfxDockingWindow::Resize();
} }
void SvxColorDockingWindow::GetFocus() void SvxColorDockingWindow::GetFocus()
{ {
SfxDockingWindow::GetFocus(); SfxDockingWindow::GetFocus();
// Grab the focus to the color value set so that it can be controlled if (aColorSet)
// with the keyboard. {
aColorSet->GrabFocus(); // Grab the focus to the color value set so that it can be controlled
// with the keyboard.
aColorSet->GrabFocus();
}
} }
bool SvxColorDockingWindow::Notify( NotifyEvent& rNEvt ) bool SvxColorDockingWindow::Notify( NotifyEvent& rNEvt )
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment