From 1b0d58ef379365da56eb1daed1158a20fab949aa Mon Sep 17 00:00:00 2001 From: JamesO2 Date: Tue, 29 Mar 2022 15:13:48 -0500 Subject: [PATCH] Changed bl_category from "Proxy & Cache" to just "Proxy" Newer versions of blender split the old "Proxy & Cache" tab into separate "Proxy" and "Cache" tabs. Installing this add-on as-is in Blender 3.0 creates a 3rd tab named "Proxy & Cache". For simplicity sake, I've moved this add-on into the "Proxy" category/tab so that it behaves more consistently like it used to. --- VSE_Easy_Proxy.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/VSE_Easy_Proxy.py b/VSE_Easy_Proxy.py index 33d5a90..5db0b10 100644 --- a/VSE_Easy_Proxy.py +++ b/VSE_Easy_Proxy.py @@ -370,7 +370,7 @@ def poll(cls, context): class SEQUENCER_PT_easy_proxy_settings(SequencerButtonsPanel, Panel): bl_label = "Easy Proxy Settings" - bl_category = "Proxy & Cache" + bl_category = "Proxy" @classmethod def poll(cls, context): @@ -428,4 +428,4 @@ def unregister(): if __name__ == "__main__": - register() \ No newline at end of file + register()