Consolidate options for hiding window decorations

Merged into a single option, hide_window_decorations. Old
aliases still work if set to yes.

Fixes #1127
This commit is contained in:
Kovid Goyal
2018-11-11 11:56:37 +05:30
parent 34aea3bca1
commit 53166d659e
5 changed files with 36 additions and 21 deletions

View File

@@ -23,8 +23,8 @@ typedef struct {
char_type select_by_word_characters[256]; size_t select_by_word_characters_count;
color_type url_color, background, active_border_color, inactive_border_color, bell_border_color;
double repaint_delay, input_delay;
bool focus_follows_mouse;
bool macos_option_as_alt, macos_hide_titlebar, macos_hide_from_tasks, x11_hide_window_decorations, macos_quit_when_last_window_closed, macos_window_resizable, macos_traditional_fullscreen;
bool focus_follows_mouse, hide_window_decorations;
bool macos_option_as_alt, macos_hide_from_tasks, macos_quit_when_last_window_closed, macos_window_resizable, macos_traditional_fullscreen;
float macos_thicken_font;
int adjust_line_height_px, adjust_column_width_px;
float adjust_line_height_frac, adjust_column_width_frac;