Skip to content

Commit

Permalink
Changelog: Show tooltips for player & tech level buttons.
Browse files Browse the repository at this point in the history
We can't show tooltips on a unrelated context / form.
The side-efect of this is that if tabs are used, then the items rendered on
the first 'page' of the form don't get rendered on each addition page.
  • Loading branch information
buginator committed Nov 20, 2010
1 parent 2b39ab4 commit 0c77b89
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/multimenu.c
Expand Up @@ -602,11 +602,11 @@ void addMultiRequest(const char* searchDir, const char* fileExtension, UDWORD mo
if(mode == MULTIOP_MAP)
{
memset(&sButInit, 0, sizeof(W_BUTINIT));
sButInit.formID = M_REQUEST;
sButInit.formID = M_REQUEST_TAB;
sButInit.id = M_REQUEST_C1;
sButInit.style = WBUT_PLAIN;
sButInit.x = 4;
sButInit.y = 258;
sButInit.x = 1;
sButInit.y = 252;
sButInit.width = 17;
sButInit.height = 17;
sButInit.UserData = 1;
Expand Down

0 comments on commit 0c77b89

Please sign in to comment.