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 ebb9f4723f
commit c61c7e7d7b

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