1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-06-13 17:06:52 +00:00

resizable is now editable

This commit is contained in:
Zeno Rogue 2021-03-09 10:48:03 +01:00
parent 7798632b9d
commit fcb270f78e

View File

@ -638,6 +638,9 @@ EX void initConfig() {
param_i(vid.msglimit, "message limit", 5);
param_i(vid.timeformat, "message log time format", 0);
param_b(resizable, "resizable", true)
-> editable("resizable window", 'r');
param_b(vid.relative_font, "relative_font", true)
-> editable("set relative font size", 'r')
-> set_reaction(compute_fsize);