mirror of
https://github.com/f4exb/sdrangel.git
synced 2026-07-25 11:34:09 -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:
@@ -530,14 +530,16 @@ void UDPSourceGUI::onMenuDialogCalled(const QPoint &p)
|
||||
resetContextMenuType();
|
||||
}
|
||||
|
||||
void UDPSourceGUI::leaveEvent(QEvent*)
|
||||
void UDPSourceGUI::leaveEvent(QEvent* event)
|
||||
{
|
||||
m_channelMarker.setHighlighted(false);
|
||||
ChannelGUI::leaveEvent(event);
|
||||
}
|
||||
|
||||
void UDPSourceGUI::enterEvent(QEvent*)
|
||||
void UDPSourceGUI::enterEvent(QEvent* event)
|
||||
{
|
||||
m_channelMarker.setHighlighted(true);
|
||||
ChannelGUI::enterEvent(event);
|
||||
}
|
||||
|
||||
void UDPSourceGUI::tick()
|
||||
|
||||
Reference in New Issue
Block a user