possible big clock sizing fix

git-svn-id: svn://localhost/ardour2/branches/3.0@6732 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Paul Davis 2010-03-05 01:44:03 +00:00
parent fcb83c97ce
commit 26cf5551a5
1 changed files with 4 additions and 1 deletions

View File

@ -660,6 +660,8 @@ ARDOUR_UI::idle_big_clock_text_resizer (int win_w, int win_h)
break;
}
size -= stepsize;
stepsize /= 2;
} else if (h < limit) {
@ -670,9 +672,10 @@ ARDOUR_UI::idle_big_clock_text_resizer (int win_w, int win_h)
break;
}
size += stepsize;
stepsize *= 2;
}
stepsize /= 2;
}
return false;