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

Commit bad5e97

Browse files
committed
2 parents 430236d + 1e3a4a3 commit bad5e97

File tree

2 files changed

+6
-26
lines changed

2 files changed

+6
-26
lines changed

default.project.json

Lines changed: 1 addition & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,10 @@
11
{
22
"name": "project",
33
"tree": {
4-
"$className": "DataModel",
5-
"ReplicatedStorage": {
6-
"$className": "ReplicatedStorage",
7-
"$ignoreUnknownInstances": true,
8-
"$path": "src/ReplicatedStorage"
9-
},
10-
"ServerScriptService": {
11-
"$className": "ServerScriptService",
12-
"$ignoreUnknownInstances": true,
13-
"$path": "src/ServerScriptService"
14-
},
15-
"StarterPlayer": {
16-
"$className": "StarterPlayer",
17-
"StarterPlayerScripts": {
18-
"$className": "StarterPlayerScripts",
19-
"$ignoreUnknownInstances": true,
20-
"$path": "src/StarterPlayer/StarterPlayerScripts"
21-
},
22-
"$ignoreUnknownInstances": true
23-
},
244
"Workspace": {
255
"$className": "Workspace",
266
"$ignoreUnknownInstances": true,
277
"$path": "src/Workspace"
288
}
299
}
30-
}
10+
}

src/Workspace/SignsInternal/PluginGui/init.lua

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ function PluginGui:newPluginGui(widgetGui)
5959
"Text", -- title text of the multi choice
6060
"" -- default value
6161
)
62-
textInput:SetMaxGraphemes(4096)
62+
textInput:SetMaxGraphemes(8192)
6363
textInput:GetFrame().Parent = textCollapse:GetContentsFrame()
6464

6565
local transparencyTextSlider = LabeledSlider.new( -- Size Slider
@@ -116,6 +116,9 @@ function PluginGui:newPluginGui(widgetGui)
116116
Color, -- choices array
117117
11 -- the starting index of the selection (in this case choice 1)
118118
)
119+
if settings().Studio.Theme == settings().Studio:GetAvailableThemes()[2] then
120+
fontTextChoice:SetSelectedIndex(1)
121+
end
119122
colorTextChoice:GetFrame().Parent = textCollapse:GetContentsFrame()
120123

121124
local boldCheckbox = LabeledCheckbox.new(
@@ -140,9 +143,6 @@ function PluginGui:newPluginGui(widgetGui)
140143
FontFace, -- choices array
141144
32 -- the starting index of the selection (in this case choice 1)
142145
)
143-
if settings().Studio.Theme == settings().Studio:GetAvailableThemes()[2] then
144-
fontTextChoice:SetSelectedIndex(2)
145-
end
146146
fontTextChoice:GetFrame().Parent = textCollapse:GetContentsFrame()
147147

148148
local strokeCollapse = CollapsibleTitledSection.new( -- Fonts collapse
@@ -320,4 +320,4 @@ function PluginGui:destoryPluginGui(widgetGui)
320320
end
321321
end
322322

323-
return PluginGui
323+
return PluginGui

0 commit comments

Comments
 (0)