Skip to content

Commit

Permalink
【Frontend】Made language popup large enough that it doesn't need to sc…
Browse files Browse the repository at this point in the history
…roll
  • Loading branch information
skylersaleh committed Jul 30, 2023
1 parent be511d5 commit 2dd7b09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -4097,7 +4097,7 @@ void se_draw_menu_panel(){
igSeparator();
se_text("Language");igSameLine(win_w*0.4,0);
igPushItemWidth(-1);
if(igBeginCombo("##Language", se_language_string(gui_state.settings.language), ImGuiComboFlags_None)){
if(igBeginCombo("##Language", se_language_string(gui_state.settings.language), ImGuiComboFlags_HeightLargest)){
int lang_id = 0;
for(int lang_id=0;lang_id<SE_MAX_LANG_VALUE;++lang_id){
const char* lang = se_language_string(lang_id);
Expand Down

0 comments on commit 2dd7b09

Please sign in to comment.