alive icon indicating copy to clipboard operation
alive copied to clipboard

Allow more than 1 active subtitle/multi-line subs, and formatting

Open MrSapps opened this issue 10 years ago • 1 comments

Currently if more than one sub title is active it won't render:

                // TODO: Render all active subs, not just the first one
                current_subs = subs[0]->Text().c_str();
                if (subs.size() > 1)
                {
                    LOG_WARNING("Too many active subtitles " << subs.size());
                }

And if a subtitle spans more than 1 line its draw as 1 line - i.e \n is ignored.

Additionally basic formatting such as [i]test[/i] should work. Probably at least i,b and u.

MrSapps avatar Jan 03 '16 19:01 MrSapps

This is half done now, [i]test[/i] [b]test[/b] works. But displaying more than one sub does not.

MrSapps avatar Jun 27 '17 20:06 MrSapps