Image workbench missing icons

This commit is contained in:
triplus
2019-03-05 00:19:49 +01:00
committed by wmayer
parent 1daa0aa79c
commit b5bd2e3405
6 changed files with 7 additions and 7 deletions

View File

@@ -55,7 +55,7 @@ CmdImageOpen::CmdImageOpen()
sToolTipText = QT_TR_NOOP("Open image view");
sWhatsThis = "Image_Open";
sStatusTip = sToolTipText;
sPixmap = "image-import";
sPixmap = "Image_Open";
}
void CmdImageOpen::activated(int iMsg)
@@ -103,7 +103,7 @@ CmdCreateImagePlane::CmdCreateImagePlane()
sToolTipText = QT_TR_NOOP("Create a planar image in the 3D space");
sWhatsThis = "Image_CreateImagePlane";
sStatusTip = sToolTipText;
sPixmap = "image-import-to-plane";
sPixmap = "Image_CreateImagePlane";
}
void CmdCreateImagePlane::activated(int iMsg)
@@ -177,7 +177,7 @@ CmdImageScaling::CmdImageScaling()
sToolTipText = QT_TR_NOOP("Image Scaling");
sWhatsThis = "Image_Scaling";
sStatusTip = sToolTipText;
sPixmap = "image-scale";
sPixmap = "Image_Scaling";
}
void CmdImageScaling::activated(int iMsg)

View File

@@ -1,8 +1,8 @@
<RCC>
<qresource>
<file>icons/image-import.svg</file>
<file>icons/image-import-to-plane.svg</file>
<file>icons/image-scale.svg</file>
<file>icons/Image_Open.svg</file>
<file>icons/Image_CreateImagePlane.svg</file>
<file>icons/Image_Scaling.svg</file>
<file>icons/ImageWorkbench.svg</file>
<file>translations/Image_af.qm</file>
<file>translations/Image_de.qm</file>

View File

Before

Width:  |  Height:  |  Size: 22 KiB

After

Width:  |  Height:  |  Size: 22 KiB

View File

Before

Width:  |  Height:  |  Size: 16 KiB

After

Width:  |  Height:  |  Size: 16 KiB

View File

Before

Width:  |  Height:  |  Size: 16 KiB

After

Width:  |  Height:  |  Size: 16 KiB

View File

@@ -59,7 +59,7 @@ if FreeCAD.GuiUp:
class _CommandImageScaling:
"Command to Scale an Image to an Image Plane"
def GetResources(self):
return {'Pixmap': "image-scale",
return {'Pixmap': "Image_Scaling",
'MenuText': QtCore.QT_TRANSLATE_NOOP("Image_Scaling", "Scale image plane"),
'Accel': "",
'ToolTip': QtCore.QT_TRANSLATE_NOOP("Image_Scaling", "Scales an image plane by defining a distance between two points")}