mirror of
https://github.com/f4exb/sdrangel.git
synced 2026-06-05 07:24:44 -04:00
Add FramelessWindowResizer class for resizig frameless windows.
Remove top-right resize grip from windows. In channels and features, make sure enterEvent and leaveEvent are passed to parent class.
This commit is contained in:
@@ -604,14 +604,16 @@ void DATVModGUI::displaySettings()
|
||||
blockApplySettings(false);
|
||||
}
|
||||
|
||||
void DATVModGUI::leaveEvent(QEvent*)
|
||||
void DATVModGUI::leaveEvent(QEvent* event)
|
||||
{
|
||||
m_channelMarker.setHighlighted(false);
|
||||
ChannelGUI::leaveEvent(event);
|
||||
}
|
||||
|
||||
void DATVModGUI::enterEvent(QEvent*)
|
||||
void DATVModGUI::enterEvent(QEvent* event)
|
||||
{
|
||||
m_channelMarker.setHighlighted(true);
|
||||
ChannelGUI::enterEvent(event);
|
||||
}
|
||||
|
||||
void DATVModGUI::tick()
|
||||
|
||||
Reference in New Issue
Block a user