Skip to content

Commit

Permalink
webOS setting entries
Browse files Browse the repository at this point in the history
  • Loading branch information
mariotaku committed Jan 19, 2021
1 parent f5648ab commit c962c43
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/ui/settings_window.c
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ bool settings_window(struct nk_context *ctx)
nk_checkbox_label(ctx, "Disable all input processing (view-only mode)", &viewonly);
app_configuration->viewonly = viewonly == nk_true;

// #if OS_WEBOS
#if OS_WEBOS || DEBUG
nk_layout_row_dynamic_s(ctx, 4, 1);
nk_spacing(ctx, 1);
nk_layout_row_dynamic_s(ctx, 25, 1);
Expand All @@ -181,7 +181,7 @@ bool settings_window(struct nk_context *ctx)
nk_checkbox_label(ctx, "Use SDL to play audio", &sdlaud);
app_configuration->audio_device = sdlaud ? "sdl" : NULL;
nk_spacing(ctx, 1);
// #endif
#endif
}
nk_end(ctx);
// Why Nuklear why, the button looks like "close" but it actually "hide"
Expand Down

0 comments on commit c962c43

Please sign in to comment.