diff --git a/src/plugins/qmljsinspector/images/color-picker-small.png b/src/plugins/qmljsinspector/images/color-picker-small.png
new file mode 100644
index 00000000000..026c31b3e1d
Binary files /dev/null and b/src/plugins/qmljsinspector/images/color-picker-small.png differ
diff --git a/src/plugins/qmljsinspector/images/select-marquee-small.png b/src/plugins/qmljsinspector/images/select-marquee-small.png
new file mode 100644
index 00000000000..92fe40d1adc
Binary files /dev/null and b/src/plugins/qmljsinspector/images/select-marquee-small.png differ
diff --git a/src/plugins/qmljsinspector/images/select-small.png b/src/plugins/qmljsinspector/images/select-small.png
new file mode 100644
index 00000000000..672285582b5
Binary files /dev/null and b/src/plugins/qmljsinspector/images/select-small.png differ
diff --git a/src/plugins/qmljsinspector/qmlinspectortoolbar.cpp b/src/plugins/qmljsinspector/qmlinspectortoolbar.cpp
index cd1b3c360f6..bfd4292aec9 100644
--- a/src/plugins/qmljsinspector/qmlinspectortoolbar.cpp
+++ b/src/plugins/qmljsinspector/qmlinspectortoolbar.cpp
@@ -114,14 +114,14 @@ void QmlInspectorToolbar::createActions(const Core::Context &context)
m_reloadAction = new QAction(QIcon(":/qml/images/reload.png"), "Reload", this);
m_reloadAction->setDisabled(true);
- m_playAction = new QAction(QIcon(":/qml/images/play.png"), tr("Play animations"), this);
- m_pauseAction = new QAction(QIcon(":/qml/images/pause.png"), tr("Pause animations"), this);
- m_selectAction = new QAction(QIcon(":/qml/images/select.png"), tr("Select"), this);
- m_selectMarqueeAction = new QAction(QIcon(":/qml/images/select-marquee.png"), tr("Select (Marquee)"), this);
- m_zoomAction = new QAction(QIcon(":/qml/images/zoom.png"), tr("Zoom"), this);
- m_colorPickerAction = new QAction(QIcon(":/qml/images/color-picker.png"), tr("Color Picker"), this);
- m_toQmlAction = new QAction(QIcon(":/qml/images/to-qml.png"), tr("Apply Changes to QML Viewer"), this);
- m_fromQmlAction = new QAction(QIcon(":/qml/images/from-qml.png"), tr("Apply Changes to Document"), this);
+ m_playAction = new QAction(QIcon(":/qml/images/play-small.png"), tr("Play animations"), this);
+ m_pauseAction = new QAction(QIcon(":/qml/images/pause-small.png"), tr("Pause animations"), this);
+ m_selectAction = new QAction(QIcon(":/qml/images/select-small.png"), tr("Select"), this);
+ m_selectMarqueeAction = new QAction(QIcon(":/qml/images/select-marquee-small.png"), tr("Select (Marquee)"), this);
+ m_zoomAction = new QAction(QIcon(":/qml/images/zoom-small.png"), tr("Zoom"), this);
+ m_colorPickerAction = new QAction(QIcon(":/qml/images/color-picker-small.png"), tr("Color Picker"), this);
+ m_toQmlAction = new QAction(QIcon(":/qml/images/to-qml-small.png"), tr("Apply Changes to QML Viewer"), this);
+ m_fromQmlAction = new QAction(QIcon(":/qml/images/from-qml-small.png"), tr("Apply Changes to Document"), this);
m_playAction->setCheckable(true);
m_playAction->setChecked(true);
m_pauseAction->setCheckable(true);
diff --git a/src/plugins/qmljsinspector/qmljsinspector.qrc b/src/plugins/qmljsinspector/qmljsinspector.qrc
index fb5c57ff314..7b4fbd95731 100644
--- a/src/plugins/qmljsinspector/qmljsinspector.qrc
+++ b/src/plugins/qmljsinspector/qmljsinspector.qrc
@@ -9,5 +9,13 @@
images/to-qml.png
images/select-marquee.png
images/zoom.png
+ images/color-picker-small.png
+ images/select-small.png
+ images/play-small.png
+ images/to-qml-small.png
+ images/pause-small.png
+ images/from-qml-small.png
+ images/zoom-small.png
+ images/select-marquee-small.png