mirror of
https://github.com/f4exb/sdrangel.git
synced 2026-06-03 06:24:48 -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:
@@ -271,14 +271,16 @@ void RemoteSourceGUI::displayPosition()
|
||||
ui->filterChainText->setText(s);
|
||||
}
|
||||
|
||||
void RemoteSourceGUI::leaveEvent(QEvent*)
|
||||
void RemoteSourceGUI::leaveEvent(QEvent* event)
|
||||
{
|
||||
m_channelMarker.setHighlighted(false);
|
||||
ChannelGUI::leaveEvent(event);
|
||||
}
|
||||
|
||||
void RemoteSourceGUI::enterEvent(QEvent*)
|
||||
void RemoteSourceGUI::enterEvent(QEvent* event)
|
||||
{
|
||||
m_channelMarker.setHighlighted(true);
|
||||
ChannelGUI::enterEvent(event);
|
||||
}
|
||||
|
||||
void RemoteSourceGUI::handleSourceMessages()
|
||||
|
||||
Reference in New Issue
Block a user