From b3aff7b3414e29fc9fe1f0e609c279e11bb6f440 Mon Sep 17 00:00:00 2001 From: Thomas Hartmann Date: Fri, 6 Aug 2010 10:54:47 +0200 Subject: [PATCH] QuickToolBar: bugfix --- .../qmldesigner/components/propertyeditor/contextpanewidget.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/qmldesigner/components/propertyeditor/contextpanewidget.cpp b/src/plugins/qmldesigner/components/propertyeditor/contextpanewidget.cpp index ac578d52e77..f42a97be84c 100644 --- a/src/plugins/qmldesigner/components/propertyeditor/contextpanewidget.cpp +++ b/src/plugins/qmldesigner/components/propertyeditor/contextpanewidget.cpp @@ -321,7 +321,7 @@ bool ContextPaneWidget::setType(const QStringList &types) bool ContextPaneWidget::acceptsType(const QStringList &types) { return types.contains("Text") || m_easingWidget->acceptsType(types) || - types.contains("Rectangle") || types.contains("Image"); + types.contains("Rectangle") || types.contains("Image") || types.contains("BorderImage"); } void ContextPaneWidget::onTogglePane()