Skip to content

Commit

Permalink
Fixed triangle size
Browse files Browse the repository at this point in the history
  • Loading branch information
xboxones1 committed Dec 18, 2024
1 parent 3a3ed56 commit c8072b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui/styles/base/BaseStyle.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1029,7 +1029,7 @@ namespace Phantom
// Expected time (release): 5usecs for regular-sized arrows
Q_NEVER_INLINE void drawArrow(QPainter* p, QRect rect, Qt::ArrowType arrowDirection, const QBrush& brush)
{
const qreal ArrowBaseRatio = 0.9;
const qreal ArrowBaseRatio = 1.0;
qreal irx, iry, irw, irh;
QRectF(rect).getRect(&irx, &iry, &irw, &irh);
if (irw < 1.0 || irh < 1.0)
Expand Down

0 comments on commit c8072b1

Please sign in to comment.