Animation: Add duration display to frame range settings #104882

Merged
Christoph Lendenfeld merged 13 commits from ChrisLend/blender:scene_frame_count into main 2023-03-23 10:18:50 +01:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit 746d0d76bc - Show all commits

View File

@ -296,8 +296,8 @@ class USERPREF_PT_interface_statusbar(InterfacePanel, CenterAlignMixIn, Panel):
col.prop(view, "show_statusbar_stats", text="Scene Statistics")
col.prop(view, "show_statusbar_memory", text="System Memory")
col.prop(view, "show_statusbar_vram", text="Video Memory")
col.prop(view, "show_statusbar_version", text="Blender Version")
col.prop(view, "show_statusbar_scene_duration", text="Scene Duration")
col.prop(view, "show_statusbar_version", text="Blender Version")
class USERPREF_PT_interface_menus(InterfacePanel, Panel):

View File

@ -4346,8 +4346,8 @@ static void ed_screens_statusbar_menu_create(uiLayout *layout, void *UNUSED(arg)
if (GPU_mem_stats_supported()) {
uiItemR(layout, &ptr, "show_statusbar_vram", 0, IFACE_("Video Memory"), ICON_NONE);
}
uiItemR(layout, &ptr, "show_statusbar_version", 0, IFACE_("Blender Version"), ICON_NONE);
uiItemR(layout, &ptr, "show_statusbar_scene_duration", 0, IFACE_("Scene Duration"), ICON_NONE);
uiItemR(layout, &ptr, "show_statusbar_version", 0, IFACE_("Blender Version"), ICON_NONE);
}
static int screen_context_menu_invoke(bContext *C,