Skip to content

Commit bc9db06

Browse files
committed
Added 'extended' to default Derma fonts
1 parent 9504141 commit bc9db06

File tree

1 file changed

+10
-5
lines changed

1 file changed

+10
-5
lines changed

garrysmod/lua/derma/init.lua

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,35 +8,40 @@ if ( system.IsLinux() ) then
88
surface.CreateFont( "DermaDefault", {
99
font = "DejaVu Sans",
1010
size = 14,
11-
weight = 500
11+
weight = 500,
12+
extended = true
1213
} )
1314

1415
surface.CreateFont( "DermaDefaultBold", {
1516
font = "DejaVu Sans",
1617
size = 14,
17-
weight = 800
18+
weight = 800,
19+
extended = true
1820
} )
1921

2022
else
2123

2224
surface.CreateFont( "DermaDefault", {
2325
font = "Tahoma",
2426
size = 13,
25-
weight = 500
27+
weight = 500,
28+
extended = true
2629
} )
2730

2831
surface.CreateFont( "DermaDefaultBold", {
2932
font = "Tahoma",
3033
size = 13,
31-
weight = 800
34+
weight = 800,
35+
extended = true
3236
} )
3337

3438
end
3539

3640
surface.CreateFont( "DermaLarge", {
3741
font = "Roboto",
3842
size = 32,
39-
weight = 500
43+
weight = 500,
44+
extended = true
4045
} )
4146

4247
include( "derma.lua" )

0 commit comments

Comments
 (0)