mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
Fix quick switcher not ordering based on tab order (#2561)
This commit is contained in:
parent
1f5b62e6e5
commit
093a088363
|
@ -84,6 +84,7 @@
|
|||
- Bugfix: Fix Twitch cheer emotes not displaying tooltips when hovered (#2434, #2503)
|
||||
- Bugfix: Fix BTTV/FFZ channel emotes saying unknown error when no emotes found (#2542)
|
||||
- Bugfix: Fix directory not opening when clicking "Open AppData Directory" setting button on macOS (#2531, #2537)
|
||||
- Bugfix: Fix quickswitcher not respecting order of tabs when filtering (#2519, #2561)
|
||||
- Dev: Updated minimum required Qt framework version to 5.12. (#2210)
|
||||
- Dev: Migrated `Kraken::getUser` to Helix (#2260)
|
||||
- Dev: Migrated `TwitchAccount::(un)followUser` from Kraken to Helix and moved it to `Helix::(un)followUser`. (#2306)
|
||||
|
|
|
@ -14,14 +14,14 @@
|
|||
namespace chatterino {
|
||||
|
||||
namespace {
|
||||
QSet<SplitContainer *> openPages()
|
||||
QList<SplitContainer *> openPages()
|
||||
{
|
||||
QSet<SplitContainer *> pages;
|
||||
QList<SplitContainer *> pages;
|
||||
|
||||
auto &nb = getApp()->windows->getMainWindow().getNotebook();
|
||||
for (int i = 0; i < nb.getPageCount(); ++i)
|
||||
{
|
||||
pages.insert(static_cast<SplitContainer *>(nb.getPageAt(i)));
|
||||
pages.append(static_cast<SplitContainer *>(nb.getPageAt(i)));
|
||||
}
|
||||
|
||||
return pages;
|
||||
|
|
Loading…
Reference in a new issue