mirror of
https://github.com/TES3MP/TES3MP.git
synced 2025-09-29 08:00:56 -04:00
Don't assume icons have a period in their filename
This commit is contained in:
parent
1f6055d54b
commit
3cff7b1e42
@ -121,8 +121,9 @@ void ItemView::update()
|
|||||||
// image
|
// image
|
||||||
MyGUI::ImageBox* image = backgroundWidget->createWidget<MyGUI::ImageBox>("ImageBox",
|
MyGUI::ImageBox* image = backgroundWidget->createWidget<MyGUI::ImageBox>("ImageBox",
|
||||||
MyGUI::IntCoord(5, 5, 32, 32), MyGUI::Align::Default);
|
MyGUI::IntCoord(5, 5, 32, 32), MyGUI::Align::Default);
|
||||||
int pos = path.rfind(".");
|
std::string::size_type pos = path.rfind(".");
|
||||||
path.erase(pos);
|
if(pos != std::string::npos)
|
||||||
|
path.erase(pos);
|
||||||
path.append(".dds");
|
path.append(".dds");
|
||||||
image->setImageTexture(path);
|
image->setImageTexture(path);
|
||||||
image->setNeedMouseFocus(false);
|
image->setNeedMouseFocus(false);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user