Skip to main content

Notice

Please note that most of the software linked on this forum is likely to be safe to use. If you are unsure, feel free to ask in the relevant topics, or send a private message to an administrator or moderator. To help curb the problems of false positives, or in the event that you do find actual malware, you can contribute through the article linked here.
Topic: playlist_incoming_item_filter progress dialog pops up everytime (Read 2566 times) previous topic - next topic
0 Members and 1 Guest are viewing this topic.

playlist_incoming_item_filter progress dialog pops up everytime

im using

playlist_incoming_item_filter_v2>()->process_locations_async()

to load a playlist (m3u8 file) with a lot of files in it, it works but.. the ugly dialog box pops up everytime, showig progress of it loading in
and im using op_flag_delay_ui

my code is as follows
Code: [Select]
// Process... calls notify when done
        static_api_ptr_t<playlist_incoming_item_filter_v2>()->process_locations_async(
                    files,
                    playlist_incoming_item_filter_v2::op_flag_delay_ui,
                    NULL,
                    "",
                    core_api::get_main_window(),
                    notify);


any idea how to completly prevent that dialog?

thanks
mitch

playlist_incoming_item_filter progress dialog pops up everytime

Reply #1
bump!

playlist_incoming_item_filter progress dialog pops up everytime

Reply #2
There is no way to completely suppress the dialog. Most probably because it is considered bad style for a component to perform a lengthy operation without giving the user a way to cancel it.