Removed debug print, made button text in options clearer

git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/main/branches/irrlicht@3411 178a84e3-b1eb-0310-8ba1-8eac791a3b58
This commit is contained in:
auria
2009-04-20 18:20:01 +00:00
parent e0ff3f3122
commit 2f20cb49b1
2 changed files with 1 additions and 4 deletions

View File

@@ -47,6 +47,6 @@
<ribbon_grid id="resolutions" proportion="4" text="all" width="100%" square_items="false" align="center" child_width="128" child_height="128" />
<button id="apply_resolution" width="20%" height="30" text="Apply changes" />
<button id="apply_resolution" width="20%" height="30" text="Apply video changes" />
</div>

View File

@@ -969,9 +969,6 @@ void RibbonGridWidget::scroll(const int x_delta)
if(m_scroll_offset < 0) m_scroll_offset = max_scroll;
else if(m_scroll_offset > max_scroll) m_scroll_offset = 0;
std::cout << "m_needed_cols=" << m_needed_cols << " max_scroll=" << max_scroll << " m_scroll_offset=" << m_scroll_offset << std::endl;
updateItemDisplay();
}
// -----------------------------------------------------------------------------