SVN commit 951276 by staniek: Main Window - make complex properties (e.g. QRect) expanded by default M +4 -3 KexiMainWindow.cpp --- trunk/koffice/kexi/main/KexiMainWindow.cpp #951275:951276 @@ -4333,9 +4333,10 @@ if (!newBuf || (force || static_cast(d->propBuffer) != newBuf)) { d->propBuffer = newBuf; if (preservePrevSelection || force) { - KoProperty::EditorView::SetOptions options - = preservePrevSelection ? KoProperty::EditorView::PreservePreviousSelection - : KoProperty::EditorView::NoOptions; + KoProperty::EditorView::SetOptions options = KoProperty::EditorView::ExpandChildItems; + if (preservePrevSelection) { + options |= KoProperty::EditorView::PreservePreviousSelection; + } if (sortedProperties) { options |= KoProperty::EditorView::AlphabeticalOrder; }