home · contact · privacy
Client, plugins: Make window scroll hints optional.
[plomrogue] / client / config / windows.py
index 676d94c9b864397c95af40d4a11273a1fb4d4fdb..2e0c7b8a5b4a135a82662c9532b3f368693d4832 100644 (file)
@@ -7,9 +7,24 @@ 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"}
 ]