mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-06-19 03:35:46 -04:00
FullscreenUI: Fix controller navigation in disc change
This commit is contained in:
@ -902,6 +902,11 @@ static void SetFileSelectorDirectory(std::string dir)
|
||||
PopulateFileSelectorItems();
|
||||
}
|
||||
|
||||
bool IsFileSelectorOpen()
|
||||
{
|
||||
return s_file_selector_open;
|
||||
}
|
||||
|
||||
void OpenFileSelector(const char* title, bool select_directory, FileSelectorCallback callback,
|
||||
FileSelectorFilters filters, std::string initial_directory)
|
||||
{
|
||||
@ -1017,6 +1022,11 @@ static std::string s_choice_dialog_title;
|
||||
static ChoiceDialogOptions s_choice_dialog_options;
|
||||
static ChoiceDialogCallback s_choice_dialog_callback;
|
||||
|
||||
bool IsChoiceDialogOpen()
|
||||
{
|
||||
return s_choice_dialog_open;
|
||||
}
|
||||
|
||||
void OpenChoiceDialog(const char* title, bool checkable, ChoiceDialogOptions options, ChoiceDialogCallback callback)
|
||||
{
|
||||
if (s_choice_dialog_open)
|
||||
|
Reference in New Issue
Block a user