mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-23 10:18:50 +00:00
Make rectangles have pointy corners
This only makes a difference in HiDpi mode.
Adaptation of the patch proposed by Daniel.
Fix for bug #12336.
(cherry picked from commit 3cdfb42cce
)
This commit is contained in:
parent
e9a5dd741e
commit
75108675ba
@ -67,7 +67,7 @@ GuiPainter::~GuiPainter()
|
||||
|
||||
|
||||
void GuiPainter::setQPainterPen(QColor const & col,
|
||||
Painter::line_style ls, int lw)
|
||||
Painter::line_style ls, int lw, Qt::PenJoinStyle js)
|
||||
{
|
||||
if (col == current_color_ && ls == current_ls_ && lw == current_lw_)
|
||||
return;
|
||||
@ -89,6 +89,8 @@ void GuiPainter::setQPainterPen(QColor const & col,
|
||||
|
||||
pen.setWidth(lw);
|
||||
|
||||
pen.setJoinStyle(js);
|
||||
|
||||
setPen(pen);
|
||||
}
|
||||
|
||||
@ -266,7 +268,7 @@ void GuiPainter::rectangle(int x, int y, int w, int h,
|
||||
line_style ls,
|
||||
int lw)
|
||||
{
|
||||
setQPainterPen(computeColor(col), ls, lw);
|
||||
setQPainterPen(computeColor(col), ls, lw, Qt::MiterJoin);
|
||||
drawRect(x, y, w, h);
|
||||
}
|
||||
|
||||
|
@ -179,7 +179,8 @@ private:
|
||||
|
||||
/// set pen parameters
|
||||
void setQPainterPen(QColor const & col,
|
||||
line_style ls = line_solid, int lw = thin_line);
|
||||
line_style ls = line_solid, int lw = thin_line,
|
||||
Qt::PenJoinStyle js = Qt::BevelJoin);
|
||||
|
||||
// Direction for painting text
|
||||
enum Direction { LtR, RtL, Auto };
|
||||
|
Loading…
Reference in New Issue
Block a user