File tree 7 files changed +84
-5
lines changed
7 files changed +84
-5
lines changed Original file line number Diff line number Diff line change @@ -186,9 +186,21 @@ function UIMenuCheckboxItem:LeftBadge(Badge)
186
186
end
187
187
end
188
188
189
+ function UIMenuCheckboxItem :CustomLeftBadge (txd ,txn )
190
+ if txd ~= nil and txd ~= " " and txn ~= nil and txn ~= " " then
191
+ self .Base :CustomLeftBadge (txd ,txn , self )
192
+ else
193
+ return self .Base :LeftBadge ()
194
+ end
195
+ end
196
+
189
197
--- RightBadge
190
198
function UIMenuCheckboxItem :RightBadge ()
191
- error (" This item does not support badges" )
199
+ error (" This item does not support right badges" )
200
+ end
201
+
202
+ function UIMenuCheckboxItem :CustomRightBadge ()
203
+ error (" This item does not support right badges" )
192
204
end
193
205
194
206
--- RightLabel
Original file line number Diff line number Diff line change @@ -225,9 +225,21 @@ function UIMenuDynamicListItem:LeftBadge(Badge)
225
225
end
226
226
end
227
227
228
+ function UIMenuDynamicListItem :CustomLeftBadge (txd ,txn )
229
+ if txd ~= nil and txd ~= " " and txn ~= nil and txn ~= " " then
230
+ self .Base :CustomLeftBadge (txd ,txn , self )
231
+ else
232
+ return self .Base :LeftBadge ()
233
+ end
234
+ end
235
+
228
236
--- RightBadge
229
237
function UIMenuDynamicListItem :RightBadge ()
230
- error (" This item does not support badges" )
238
+ error (" This item does not support right badges" )
239
+ end
240
+
241
+ function UIMenuDynamicListItem :CustomRightBadge ()
242
+ error (" This item does not support right badges" )
231
243
end
232
244
233
245
--- RightLabel
Original file line number Diff line number Diff line change @@ -277,9 +277,23 @@ function UIMenuListItem:LeftBadge(Badge)
277
277
end
278
278
end
279
279
280
+ --- CustomLeftBadge
281
+ function UIMenuListItem :CustomLeftBadge (txd ,txn )
282
+ if txd ~= nil and txd ~= " " and txn ~= nil and txn ~= " " then
283
+ self .Base :CustomLeftBadge (txd ,txn , self )
284
+ else
285
+ return self .Base :LeftBadge ()
286
+ end
287
+ end
288
+
289
+
280
290
--- RightBadge
281
291
function UIMenuListItem :RightBadge ()
282
- error (" This item does not support badges" )
292
+ error (" This item does not support right badges" )
293
+ end
294
+
295
+ function UIMenuListItem :CustomRightBadge ()
296
+ error (" This item does not support right badges" )
283
297
end
284
298
285
299
--- RightLabel
Original file line number Diff line number Diff line change @@ -241,9 +241,21 @@ function UIMenuProgressItem:LeftBadge(Badge)
241
241
end
242
242
end
243
243
244
+ function UIMenuProgressItem :CustomLeftBadge (txd ,txn )
245
+ if txd ~= nil and txd ~= " " and txn ~= nil and txn ~= " " then
246
+ self .Base :CustomLeftBadge (txd ,txn , self )
247
+ else
248
+ return self .Base :LeftBadge ()
249
+ end
250
+ end
251
+
244
252
--- RightBadge
245
253
function UIMenuProgressItem :RightBadge ()
246
- error (" This item does not support badges" )
254
+ error (" This item does not support right badges" )
255
+ end
256
+
257
+ function UIMenuProgressItem :CustomRightBadge ()
258
+ error (" This item does not support right badges" )
247
259
end
248
260
249
261
--- RightLabel
Original file line number Diff line number Diff line change @@ -166,6 +166,15 @@ function UIMenuSeparatorItem:RightBadge()
166
166
error (" This item does not support badges" )
167
167
end
168
168
169
+ function UIMenuSeparatorItem :CustomLeftBadge ()
170
+ error (" This item does not support badges" )
171
+ end
172
+
173
+ --- RightBadge
174
+ function UIMenuSeparatorItem :CustomRightBadge ()
175
+ error (" This item does not support badges" )
176
+ end
177
+
169
178
--- RightLabel
170
179
function UIMenuSeparatorItem :RightLabel ()
171
180
error (" This item does not support a right label" )
Original file line number Diff line number Diff line change @@ -231,8 +231,20 @@ function UIMenuSliderItem:LeftBadge(Badge)
231
231
end
232
232
end
233
233
234
+ function UIMenuSliderItem :CustomLeftBadge (txd ,txn )
235
+ if txd ~= nil and txd ~= " " and txn ~= nil and txn ~= " " then
236
+ self .Base :CustomLeftBadge (txd ,txn , self )
237
+ else
238
+ return self .Base :LeftBadge ()
239
+ end
240
+ end
241
+
234
242
function UIMenuSliderItem :RightBadge ()
235
- error (" This item does not support badges" )
243
+ error (" This item does not support right badges" )
244
+ end
245
+
246
+ function UIMenuSliderItem :CustomRightBadge ()
247
+ error (" This item does not support right badges" )
236
248
end
237
249
238
250
function UIMenuSliderItem :RightLabel ()
Original file line number Diff line number Diff line change @@ -221,6 +221,14 @@ function UIMenuStatsItem:RightBadge()
221
221
error (" This item does not support badges" )
222
222
end
223
223
224
+ function UIMenuStatsItem :CustomLeftBadge ()
225
+ error (" This item does not support badges" )
226
+ end
227
+
228
+ function UIMenuStatsItem :CustomRightBadge ()
229
+ error (" This item does not support badges" )
230
+ end
231
+
224
232
--- RightLabel
225
233
function UIMenuStatsItem :RightLabel ()
226
234
error (" This item does not support a right label" )
You can’t perform that action at this time.
0 commit comments