Skip to content
This repository was archived by the owner on Aug 20, 2024. It is now read-only.

Commit 6c422ce

Browse files
committed
Update tooltip
Signed-off-by: RyanLua <[email protected]>
1 parent c12c442 commit 6c422ce

File tree

1 file changed

+13
-8
lines changed

1 file changed

+13
-8
lines changed

src/Signs/PluginInfo/init.client.lua

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
-- Create new "DockWidgetPluginGuiInfo" object for "PluginGuiService"
22
local widgetInfo = DockWidgetPluginGuiInfo.new(
3-
Enum.InitialDockState.Left, -- Widget will be initialized in left panel
4-
false, -- Widget will be initially enabled
5-
false, -- Don't override the previous enabled state
6-
275, -- Default width of the floating window
7-
655, -- Default height of the floating window
8-
165, -- Minimum width of the floating window
9-
415 -- Minimum height of the floating window
3+
Enum.InitialDockState.Left, -- Widget will be initialized in left panel
4+
false, -- Widget will be initially enabled
5+
false, -- Don't override the previous enabled state
6+
275, -- Default width of the floating window
7+
655, -- Default height of the floating window
8+
165, -- Minimum width of the floating window
9+
415 -- Minimum height of the floating window
1010
)
1111

1212
-- Require plugin toolbar so other plugins can share toolbar
@@ -17,7 +17,12 @@ pluginToolbar:SetPlugin(plugin)
1717
local toolbar = pluginToolbar:CreateToolbar("Text Tools")
1818

1919
-- Add a toolbar button
20-
local button = toolbar:CreateButton("Signs", "Hide/show the Signs Widget.", "rbxassetid://12135392705", "Signs")
20+
local button = toolbar:CreateButton(
21+
"Signs",
22+
"Hide/show the Signs Widget.\n\nSigns is a Roblox Studio plugin that helps users create TextLabels for their projects quickly and safely. Simple to use UI and lots of options for customization.\n\nLearn more at https://github.com/RyanLua/Signs.",
23+
"rbxassetid://12135392705",
24+
"Signs"
25+
)
2126
button.ClickableWhenViewportHidden = true
2227

2328
-- Create new widget GUI and name it

0 commit comments

Comments
 (0)