We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0a20ace commit 0081f30Copy full SHA for 0081f30
src/promptqueue/src/Shared/PromptQueue.lua
@@ -166,6 +166,24 @@ function PromptQueue:HideCurrent(doNotAnimate)
166
end
167
168
169
+--[=[
170
+ Returns whether or not the PromptQueue is currently showing its contents.
171
+
172
+ @return boolean
173
+]=]
174
+function PromptQueue:IsShowing()
175
+ return self._isShowing.Value
176
+end
177
178
179
+ Observes the current state of the PromptQueue, emitting true when showing and false if not.
180
181
+ @return Observable<boolean>
182
183
+function PromptQueue:ObserveIsShowing()
184
+ return self._isShowing:Observe()
185
186
187
function PromptQueue:_startQueueProcessing()
188
if self._maid._processing then
189
return
0 commit comments