From 77ceedb0e56580eb53b4127905fa24d2f8f8864a Mon Sep 17 00:00:00 2001 From: alacielx <62450706+alacielx@users.noreply.github.com> Date: Sat, 11 Oct 2025 01:55:27 -0500 Subject: [PATCH] Update Multi_Plugins.py --- Multi_Plugins.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Multi_Plugins.py b/Multi_Plugins.py index fa31b71..6012c6a 100644 --- a/Multi_Plugins.py +++ b/Multi_Plugins.py @@ -3564,17 +3564,17 @@ def on_left_click(self, event): def setup_load_check_button_or_text(self): if self.bedrock_id and not self.icon_bitmap: - self.button = wx.Button(self, size=(80, 80), label=bedrock_id) + self.button = wx.Button(self, size=(80, 80), label=self.bedrock_id) font = self.button.GetFont() font.SetPointSize(10) # Make text smaller self.button.SetFont(font) - split_name = bedrock_id.split('_') - bedrock_id = '' + split_name = self.bedrock_id.split('_') + self.bedrock_id = '' for i,s in enumerate(split_name): # Manual wrapping if len(s) > 0: - bedrock_id += f'{s}_\n' if i != len(split_name)-1 else f'{s}' + self.bedrock_id += f'{s}_\n' if i != len(split_name)-1 else f'{s}' - self.button.SetLabel(bedrock_id) + self.button.SetLabel(self.bedrock_id) else: if self.bedrock_id: self.button = wx.Button(self, size=(80, 80) ,name=self.bedrock_id) @@ -18452,4 +18452,4 @@ def is_file_recent(self, age_limit=25): "The Plugin has Been Updated", wx.OK | wx.ICON_INFORMATION) -export = dict(name="# Multi TOOLS", operation=MultiTools) # By PremiereHell \ No newline at end of file +export = dict(name="# Multi TOOLS", operation=MultiTools) # By PremiereHell