mirror of
https://github.com/tumic0/GPXSee.git
synced 2024-11-24 03:35:53 +01:00
Fixed display artifact in the graph tab bar
Yet another workaroud for the Qt 6.7 bug that draws QGraphicsScene items
to the graph tab bar. Follow up to 6ce0b03295
.
This commit is contained in:
parent
c5a7a4bb0e
commit
8c2e2f65c3
@ -357,7 +357,8 @@ void GraphView::redraw(const QSizeF &size)
|
|||||||
|
|
||||||
void GraphView::resizeEvent(QResizeEvent *e)
|
void GraphView::resizeEvent(QResizeEvent *e)
|
||||||
{
|
{
|
||||||
redraw(e->size() - QSizeF(MARGIN, MARGIN));
|
if (!_graphs.isEmpty())
|
||||||
|
redraw(e->size() - QSizeF(MARGIN, MARGIN));
|
||||||
|
|
||||||
QGraphicsView::resizeEvent(e);
|
QGraphicsView::resizeEvent(e);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user