Add white icons.

master
Torsten Paul 2015-01-09 19:24:04 +01:00
parent ceae9d57d0
commit bb7adc83cb
8 changed files with 12 additions and 2 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 722 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 726 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 580 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 577 B

View File

@ -1,5 +1,10 @@
<RCC>
<qresource prefix="/">
<file>images/Command-Redo-32-white.png</file>
<file>images/Command-Reset-32-white.png</file>
<file>images/Command-Undo-32-white.png</file>
<file>images/Decrease-Indent-32-white.png</file>
<file>images/Increase-Indent-32-white.png</file>
<file>images/Command-Redo-32.png</file>
<file>images/Command-Reset-32.png</file>
<file>images/Command-Undo-32.png</file>

View File

@ -210,6 +210,7 @@
<addaction name="viewActionViewAll"/>
<addaction name="viewActionZoomIn"/>
<addaction name="viewActionZoomOut"/>
<addaction name="viewActionResetView"/>
<addaction name="separator"/>
<addaction name="viewActionRight"/>
<addaction name="viewActionTop"/>
@ -405,13 +406,12 @@
<addaction name="separator"/>
<addaction name="editActionUndo"/>
<addaction name="editActionRedo"/>
<addaction name="editActionIndent"/>
<addaction name="editActionUnindent"/>
<addaction name="editActionIndent"/>
<addaction name="designActionPreview"/>
<addaction name="designActionRender"/>
<addaction name="separator"/>
<addaction name="designActionExportSTL"/>
<addaction name="viewActionResetView"/>
</widget>
</item>
<item>

View File

@ -498,6 +498,11 @@ MainWindow::MainWindow(const QString &filename)
initActionIcon(viewActionAnimate, ":/images/animate.png", ":/images/animate.png");
initActionIcon(designActionExportSTL, ":/images/export.png", ":/images/export-white.png");
initActionIcon(viewActionViewAll, ":/images/zoom-all.png", ":/images/zoom-all-white.png");
initActionIcon(editActionUndo, ":/images/Command-Undo-32.png", ":/images/Command-Undo-32-white.png");
initActionIcon(editActionRedo, ":/images/Command-Redo-32.png", ":/images/Command-Redo-32-white.png");
initActionIcon(editActionUnindent, ":/images/Decrease-Indent-32.png", ":/images/Decrease-Indent-32-white.png");
initActionIcon(editActionIndent, ":/images/Increase-Indent-32.png", ":/images/Increase-Indent-32-white.png");
initActionIcon(viewActionResetView, ":/images/Command-Reset-32.png", ":/images/Command-Reset-32-white.png");
// make sure it looks nice..
QByteArray windowState = settings.value("window/state", QByteArray()).toByteArray();