From 9511384442354036dfb806e6cf876aecc293b0b5 Mon Sep 17 00:00:00 2001 From: Philipp Oeser Date: Wed, 24 May 2023 09:25:10 +0200 Subject: [PATCH] Fix: editor naming in recent spreadsheet animation update commit Followup to adb36b89c7f487bd0dc3c07a270078fb5e20cdb6. "Spreadsheet Editors" > "Spreadsheet" (as this is what the spreadsheet is called e.g. in the Editor type dropdown). Pull Request: https://projects.blender.org/blender/blender/pulls/108186 --- scripts/startup/bl_ui/space_time.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/startup/bl_ui/space_time.py b/scripts/startup/bl_ui/space_time.py index 68a38120a6a..f4f9fb7733a 100644 --- a/scripts/startup/bl_ui/space_time.py +++ b/scripts/startup/bl_ui/space_time.py @@ -257,7 +257,7 @@ class TIME_PT_playback(TimelinePanelButtons, Panel): col.prop(screen, "use_play_clip_editors", text="Movie Clip Editor") col.prop(screen, "use_play_node_editors", text="Node Editors") col.prop(screen, "use_play_sequence_editors", text="Video Sequencer") - col.prop(screen, "use_play_spreadsheet_editors") + col.prop(screen, "use_play_spreadsheet_editors", text="Spreadsheet") col = layout.column(heading="Show") col.prop(scene, "show_subframe", text="Subframes")