]> git.saurik.com Git - wxWidgets.git/commitdiff
Corrected disabling of controls in cell editor.
authorJulian Smart <julian@anthemion.co.uk>
Thu, 26 Sep 2013 10:00:50 +0000 (10:00 +0000)
committerJulian Smart <julian@anthemion.co.uk>
Thu, 26 Sep 2013 10:00:50 +0000 (10:00 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74862 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/richtext/richtextbuffer.cpp

index 1ba7c4f8594148fda360d9451d7ed48156bfd3c0..2eb12f119acd62fce18626f9d4df8be0b7d29c94 100644 (file)
@@ -9291,18 +9291,20 @@ bool wxRichTextCell::EditProperties(wxWindow* parent, wxRichTextBuffer* buffer)
     else
         caption = _("Cell Properties");
 
+    // We don't want position and floating controls for a cell.
+    wxRichTextSizePage::ShowPositionControls(false);
+    wxRichTextSizePage::ShowFloatingControls(false);
+    wxRichTextSizePage::ShowAlignmentControls(true);
+
     wxRichTextObjectPropertiesDialog cellDlg(this, wxGetTopLevelParent(parent), wxID_ANY, caption);
     cellDlg.SetAttributes(attr);
 
-    wxRichTextSizePage* sizePage = wxDynamicCast(cellDlg.FindPage(wxCLASSINFO(wxRichTextSizePage)), wxRichTextSizePage);
-    if (sizePage)
-    {
-        // We don't want position and floating controls for a cell.
-        sizePage->ShowPositionControls(false);
-        sizePage->ShowFloatingControls(false);
-    }
+    bool ok = (cellDlg.ShowModal() == wxID_OK);
+
+    wxRichTextSizePage::ShowPositionControls(true);
+    wxRichTextSizePage::ShowFloatingControls(true);
 
-    if (cellDlg.ShowModal() == wxID_OK)
+    if (ok)
     {
         if (multipleCells)
         {