mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-13 18:59:08 +00:00
Fixed: must not be lowered or the tooltip in milkopad doesn't work
This commit is contained in:
parent
db6971fa1a
commit
ebe72586fc
1 changed files with 1 additions and 1 deletions
|
@ -92,7 +92,7 @@ bool CCtrlBase::parse (xmlNodePtr cur, CInterfaceGroup *parentGroup)
|
||||||
prop = (char*) xmlGetProp( cur, (xmlChar*)"on_tooltip" );
|
prop = (char*) xmlGetProp( cur, (xmlChar*)"on_tooltip" );
|
||||||
if (prop)
|
if (prop)
|
||||||
{
|
{
|
||||||
_OnContextHelp= NLMISC::toLower(std::string((const char*)prop));
|
_OnContextHelp= (const char*)prop;
|
||||||
}
|
}
|
||||||
prop = (char*) xmlGetProp( cur, (xmlChar*)"on_tooltip_params" );
|
prop = (char*) xmlGetProp( cur, (xmlChar*)"on_tooltip_params" );
|
||||||
if (prop)
|
if (prop)
|
||||||
|
|
Loading…
Reference in a new issue