X-Git-Url: https://plomlompom.com/repos/berlin_corona.txt?a=blobdiff_plain;f=client%2Fconfig%2Fwindows.py;h=2e0c7b8a5b4a135a82662c9532b3f368693d4832;hb=3247a076c85a8c350072e9e11b21d29d3cde4c59;hp=86fd4dcc3c3e88373d1c1bc8721a81328318b4e3;hpb=3d4ef72a869787ade399af85a42ab0aef9d73766;p=plomrogue diff --git a/client/config/windows.py b/client/config/windows.py index 86fd4dc..2e0c7b8 100644 --- a/client/config/windows.py +++ b/client/config/windows.py @@ -1,9 +1,30 @@ +# This file is part of PlomRogue. PlomRogue is licensed under the GPL version 3 +# or any later version. For details on its copyright, license, and warranties, +# see the file NOTICE in the root directory of the PlomRogue source package. + + from client.windows import win_info, win_log, win_inventory, win_look, win_map + windows_config = [ - {"config": [1, 33], "func": win_info, "title": "Info"}, - {"config": [-7, 33], "func": win_log, "title": "Log"}, - {"config": [4, 16], "func": win_inventory, "title": "Inventory"}, - {"config": [4, 16], "func": win_look, "title": "Things here"}, - {"config": [0, -34], "func": win_map, "title": "Map"} + {"config": [1, 33], + "func": win_info, + "scroll_hints": True, + "title": "Info"}, + {"config": [-7, 33], + "func": win_log, + "scroll_hints": True, + "title": "Log"}, + {"config": [4, 16], + "func": win_inventory, + "scroll_hints": True, + "title": "Inventory"}, + {"config": [4, 16], + "func": win_look, + "scroll_hints": True, + "title": "Things here"}, + {"config": [0, -34], + "func": win_map, + "scroll_hints": True, + "title": "Map"} ]