Skip to content
Snippets Groups Projects
Commit b3aff7b3 authored by Thomas Hartmann's avatar Thomas Hartmann
Browse files

QuickToolBar: bugfix

parent 463f8363
No related branches found
No related tags found
No related merge requests found
...@@ -321,7 +321,7 @@ bool ContextPaneWidget::setType(const QStringList &types) ...@@ -321,7 +321,7 @@ bool ContextPaneWidget::setType(const QStringList &types)
bool ContextPaneWidget::acceptsType(const QStringList &types) bool ContextPaneWidget::acceptsType(const QStringList &types)
{ {
return types.contains("Text") || m_easingWidget->acceptsType(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() void ContextPaneWidget::onTogglePane()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment