mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-06 12:40:22 +02:00
LCL-GTK3: Use smaller dash size for SynEdit gutter mark etc. Issue #39703, patch by Alexey Torgashin.
This commit is contained in:
parent
a9a1c7cceb
commit
27a2cf4ab8
@ -313,10 +313,10 @@ const
|
||||
PixelOffset = 0.5; // Cairo API needs 0.5 pixel offset to not make blurry lines
|
||||
|
||||
const
|
||||
Dash_Dash: array [0..1] of double = (18, 6); //____ ____
|
||||
Dash_Dot: array [0..1] of double = (3, 3); //.........
|
||||
Dash_DashDot: array [0..3] of double = (9, 6, 3, 6); //__ . __ .
|
||||
Dash_DashDotDot: array [0..5] of double = (9, 3, 3, 3, 3, 3); //__ . . __
|
||||
Dash_Dash: array [0..1] of double = (3, 2); //____ ____
|
||||
Dash_Dot: array [0..1] of double = (1, 2); //.........
|
||||
Dash_DashDot: array [0..3] of double = (3, 2, 1, 2); //__ . __ .
|
||||
Dash_DashDotDot: array [0..5] of double = (3, 2, 1, 2, 1, 2); //__ . . __
|
||||
|
||||
var
|
||||
FDefaultContext: TGtk3DeviceContext = nil;
|
||||
|
Loading…
Reference in New Issue
Block a user