Skip to content

Commit

Permalink
Adjust default console height
Browse files Browse the repository at this point in the history
  • Loading branch information
Ezhh authored and rubenwardy committed Dec 17, 2017
1 parent 649eef9 commit 26c7e98
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion builtin/settingtypes.txt
Expand Up @@ -616,7 +616,7 @@ fall_bobbing_amount (Fall bobbing factor) float 0.0
3d_mode (3D mode) enum none none,anaglyph,interlaced,topbottom,sidebyside,pageflip

# In-game chat console height, between 0.1 (10%) and 1.0 (100%).
console_height (Console height) float 1.0 0.1 1.0
console_height (Console height) float 0.6 0.1 1.0

# In-game chat console background color (R,G,B).
console_color (Console color) string (0,0,0)
Expand Down
2 changes: 1 addition & 1 deletion minetest.conf.example
Expand Up @@ -701,7 +701,7 @@

# In-game chat console height, between 0.1 (10%) and 1.0 (100%).
# type: float min: 0.1 max: 1
# console_height = 1.0
# console_height = 0.6

# In-game chat console background color (R,G,B).
# type: string
Expand Down
2 changes: 1 addition & 1 deletion src/defaultsettings.cpp
Expand Up @@ -180,7 +180,7 @@ void set_default_settings(Settings *settings)
settings->setDefault("cloud_radius", "12");
settings->setDefault("menu_clouds", "true");
settings->setDefault("opaque_water", "false");
settings->setDefault("console_height", "1.0");
settings->setDefault("console_height", "0.6");
settings->setDefault("console_color", "(0,0,0)");
settings->setDefault("console_alpha", "200");
settings->setDefault("formspec_fullscreen_bg_color", "(0,0,0)");
Expand Down

0 comments on commit 26c7e98

Please sign in to comment.