summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCédric Bosdonnat <cedric.bosdonnat.ooo@free.fr>2011-07-07 14:22:29 +0200
committerCédric Bosdonnat <cedric.bosdonnat.ooo@free.fr>2011-07-07 14:22:59 +0200
commit4f9ba9186a0a6fe90e5f3adde874ce34638c9536 (patch)
treea153c1394d58d56a4334020d09db6bc0a42b0193
parent60e6181711768149b139e2b321142da9e131f80b (diff)
fdo#32257: call the handler once all changes are done on FrameSelector
-rw-r--r--svx/source/dialog/frmsel.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/svx/source/dialog/frmsel.cxx b/svx/source/dialog/frmsel.cxx
index 14d2ccef22..9dfefa37b4 100644
--- a/svx/source/dialog/frmsel.cxx
+++ b/svx/source/dialog/frmsel.cxx
@@ -767,7 +767,6 @@ void FrameSelectorImpl::SelectBorder( FrameBorder& rBorder, bool bSelect )
rBorder.Select( bSelect );
DrawArrows( rBorder );
DoInvalidate( false );
- maSelectHdl.Call( this );
}
void FrameSelectorImpl::SilentGrabFocus()
@@ -1125,6 +1124,8 @@ void FrameSelector::MouseButtonDown( const MouseEvent& rMEvt )
for( SelFrameBorderIter aIt( mxImpl->maEnabBorders ); aIt.Is(); ++aIt )
mxImpl->ToggleBorderState( **aIt );
}
+
+ GetSelectHdl().Call( this );
}
}
}