Navigation Menu

Skip to content

Commit

Permalink
Make tooltip_show_delay=0 work
Browse files Browse the repository at this point in the history
  • Loading branch information
Zefram authored and sapier committed Jul 16, 2014
1 parent 07f444e commit 7d72ac6
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions src/guiFormSpecMenu.cpp
Expand Up @@ -2350,16 +2350,19 @@ void GUIFormSpecMenu::drawMenu()

if (hovered != NULL) {
s32 id = hovered->getID();
u32 delta;
if (id == -1) {
m_old_tooltip_id = id;
m_old_tooltip = "";
delta = 0;
} else if (id != m_old_tooltip_id) {
m_hoovered_time = getTimeMs();
m_old_tooltip_id = id;
delta = 0;
} else if (id == m_old_tooltip_id) {
u32 delta = porting::getDeltaMs(m_hoovered_time, getTimeMs());
if (delta <= m_tooltip_show_delay)
goto skip_tooltip;
delta = porting::getDeltaMs(m_hoovered_time, getTimeMs());
}
if (id != -1 && delta >= m_tooltip_show_delay) {
for(std::vector<FieldSpec>::iterator iter = m_fields.begin();
iter != m_fields.end(); iter++) {
if ( (iter->fid == id) && (m_tooltips[iter->fname].tooltip != "") ){
Expand Down Expand Up @@ -2392,7 +2395,6 @@ void GUIFormSpecMenu::drawMenu()
}
}

skip_tooltip:
/*
Draw dragged item stack
*/
Expand Down

0 comments on commit 7d72ac6

Please sign in to comment.