┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/panels/information/mediawidget.cpp
AgeCommit message (Collapse)Author
2026-03-22panels/information: prevent memleak when closing mediawidgetMéven Car
Parent the QMediaPlayer and QAudioOutput so they can get deleted with their parent.
2026-03-11informationpanel: ignore gestures on media sliderMéven Car
Explicitly grabGesture TapAndHoldGesture to be able to ignore them and thus prevent bubbling the event to the parent widget. BUG: 431307
2025-11-20informationpanel: prevent a crash when creating video preview panel and a ↵Jean-Baptiste Mardelle
media file is selected To reproduce the crash: - Open Dolphin, disable information panel and close Dolphin - Re-open Dolphin - Select a video file - Enable information panel - Crash Problem is that some elements of the MediaWidget panel are created when the widget is shown, in `showEvent` (`m_seekSlider` and `m_topLayout`), and these elements are called before being created. This MR fixes 2 different crashes: - Crash creating panel when a video file is selected (call to `m_seekSlider` before its creation) - Crash creating panel when a video file is selected and autoplay enabled (call to `m_topLayout` before its creation)
2025-09-23GIT_SILENT: Don't duplicate headers between .h/.cppLaurent Montel
2025-06-28clean includeMéven Car
2025-06-28mediawidget: bind arrow keys to slide in mediaMéven Car
2025-06-28InformationPanel: Port from Phonon to QtMultimediaMéven Car