Schokokex / addon_template_butt

A template for Dota But Mods. Initiated by Baumis Twitch/Youtube channel and the community.
https://www.twitch.tv/l34um1
22 stars 13 forks source link

panorama precision fix #44

Open Schokokex opened 4 years ago

Schokokex commented 4 years ago

@Schokokeks in panorama it seems we can add any xml attribute, like this

<TextEntry onfocus="onfocus('SWAP_PROC_LIMIT')" oninputsubmit="onPanelChange('SWAP_PROC_LIMIT')" onblur="onPanelChange('SWAP_PROC_LIMIT')" id="SWAP_PROC_LIMIT" class="SettingsItem" maxchars="3" unit="%" precision="2"/>

notice "precision" tag i added. With this i can add in Js IsFixed() call to show it properly

Schokokex commented 4 years ago

<TextEntry onfocus="onfocus('SWAP_PROC_LIMIT')" 
    oninputsubmit="onPanelChange('SWAP_PROC_LIMIT')"
    onblur="onPanelChange('SWAP_PROC_LIMIT')"
    id="SWAP_PROC_LIMIT"
    class="SettingsItem"
    maxchars="3"
    unit="%"
    precision="2"/>