mirror of
https://port.numenaute.org/aleajactaest/khanat-code-old.git
synced 2024-11-18 05:11:41 +00:00
Changed: Display inventory bulk with two decimal places
This commit is contained in:
parent
542c29ded7
commit
e98bc5daee
1 changed files with 3 additions and 3 deletions
|
@ -4048,7 +4048,7 @@ public:
|
|||
|
||||
// Get the sum of the bulk for this db branch
|
||||
const double epsilon = 0.001;
|
||||
sint32 val = sint32(CInventoryManager::getBranchBulk(dbBranch, 0, 10000) + epsilon);
|
||||
float val = CInventoryManager::getBranchBulk(dbBranch, 0, 10000) + epsilon;
|
||||
|
||||
// Get the Max value
|
||||
sint32 maxVal= 0;
|
||||
|
@ -4058,7 +4058,7 @@ public:
|
|||
|
||||
// Replace in the formated text
|
||||
ucstring str= CI18N::get("uittBulkFormat");
|
||||
strFindReplace(str, "%v", toString(val) );
|
||||
strFindReplace(str, "%v", toString("%.2f", val) );
|
||||
strFindReplace(str, "%m", toString(maxVal) );
|
||||
CWidgetManager::getInstance()->setContextHelpText(str);
|
||||
}
|
||||
|
@ -4502,4 +4502,4 @@ public:
|
|||
}
|
||||
}
|
||||
};
|
||||
REGISTER_ACTION_HANDLER( CHandlerEmote, "emote");
|
||||
REGISTER_ACTION_HANDLER( CHandlerEmote, "emote");
|
||||
|
|
Loading…
Reference in a new issue