fix: prevent graph's drodown from insta closing
This commit is contained in:
@@ -741,7 +741,7 @@ static CallBackFunction ToolbarGraphsClick(Window *w)
|
|||||||
|
|
||||||
if (_toolbar_mode != TB_NORMAL) AddDropDownLeagueTableOptions(list);
|
if (_toolbar_mode != TB_NORMAL) AddDropDownLeagueTableOptions(list);
|
||||||
|
|
||||||
ShowDropDownList(w, std::move(list), GRMN_OPERATING_PROFIT_GRAPH, WID_TN_GRAPHS, 140, true, true);
|
ShowDropDownList(w, std::move(list), GRMN_OPERATING_PROFIT_GRAPH, WID_TN_GRAPHS, 140, true, false);
|
||||||
if (_settings_client.sound.click_beep) SndPlayFx(SND_15_BEEP);
|
if (_settings_client.sound.click_beep) SndPlayFx(SND_15_BEEP);
|
||||||
|
|
||||||
return CBF_NONE;
|
return CBF_NONE;
|
||||||
@@ -754,7 +754,7 @@ static CallBackFunction ToolbarLeagueClick(Window *w)
|
|||||||
AddDropDownLeagueTableOptions(list);
|
AddDropDownLeagueTableOptions(list);
|
||||||
|
|
||||||
int selected = list[0]->result;
|
int selected = list[0]->result;
|
||||||
ShowDropDownList(w, std::move(list), selected, WID_TN_LEAGUE, 140, true, true);
|
ShowDropDownList(w, std::move(list), selected, WID_TN_LEAGUE, 140, true, false);
|
||||||
if (_settings_client.sound.click_beep) SndPlayFx(SND_15_BEEP);
|
if (_settings_client.sound.click_beep) SndPlayFx(SND_15_BEEP);
|
||||||
|
|
||||||
return CBF_NONE;
|
return CBF_NONE;
|
||||||
|
|||||||
Reference in New Issue
Block a user