Fixes SurfaceExtend icon not being found.

Before this patch, ViewProviderExtend::getIcon() returned "Surface_Extend",
which does not exist; The icon file is "Surface_ExtendFace".
This commit is contained in:
Tobias Frost
2021-10-22 09:39:04 +02:00
parent a5411da5b9
commit a156245704

View File

@@ -35,7 +35,7 @@ namespace SurfaceGui {
QIcon ViewProviderExtend::getIcon(void) const
{
return Gui::BitmapFactory().pixmap("Surface_Extend");
return Gui::BitmapFactory().pixmap("Surface_ExtendFace");
}
} //namespace SurfaceGui