Changeset View
Changeset View
Standalone View
Standalone View
release/scripts/startup/bl_ui/space_info.py
| Show First 20 Lines • Show All 197 Lines • ▼ Show 20 Lines | |||||
| class INFO_MT_file_previews(Menu): | class INFO_MT_file_previews(Menu): | ||||
| bl_label = "Data Previews" | bl_label = "Data Previews" | ||||
| def draw(self, context): | def draw(self, context): | ||||
| layout = self.layout | layout = self.layout | ||||
| layout.operator("wm.previews_ensure") | layout.operator("wm.previews_ensure") | ||||
| layout.operator("wm.previews_batch_generate") | |||||
| layout.separator() | |||||
| layout.operator("wm.previews_clear") | |||||
| layout.operator("wm.previews_batch_clear") | |||||
| class INFO_MT_game(Menu): | class INFO_MT_game(Menu): | ||||
| bl_label = "Game" | bl_label = "Game" | ||||
| def draw(self, context): | def draw(self, context): | ||||
| layout = self.layout | layout = self.layout | ||||
| ▲ Show 20 Lines • Show All 103 Lines • Show Last 20 Lines | |||||