| 823 | } |
| 824 | |
| 825 | void SDLWindow::FlashWindow() |
| 826 | { |
| 827 | #if PLATFORM_LINUX |
| 828 | // KDE bug: flashing brings the window on top of other windows, disable it for now... |
| 829 | if (SDLPlatform::UsesWayland() && SDLImpl::XDGCurrentDesktop.Compare(String("KDE"), StringSearchCase::IgnoreCase) == 0) |
| 830 | return; |
| 831 | #endif |
| 832 | SDL_FlashWindow(_window, SDL_FLASH_UNTIL_FOCUSED); |
| 833 | } |
| 834 | |
| 835 | float SDLWindow::GetOpacity() const |
| 836 | { |