mirror of https://github.com/buggins/dlangui.git
standard font faces
This commit is contained in:
parent
f1ef6c2544
commit
d6d84c51b8
|
@ -174,7 +174,7 @@
|
|||
<debuglevel>0</debuglevel>
|
||||
<debugids />
|
||||
<versionlevel>0</versionlevel>
|
||||
<versionids>EmbedStandardResources ForceLogs</versionids>
|
||||
<versionids>EmbedStandardResources ForceLogs USE_FREETYPE</versionids>
|
||||
<dump_source>0</dump_source>
|
||||
<mapverbosity>0</mapverbosity>
|
||||
<createImplib>0</createImplib>
|
||||
|
|
|
@ -22,7 +22,7 @@ import std.file;
|
|||
import std.string;
|
||||
import std.utf;
|
||||
|
||||
immutable int[string] STD_FONT_FACES = [
|
||||
__gshared int[string] STD_FONT_FACES = [
|
||||
"Arial": 12,
|
||||
"Times New Roman": 12,
|
||||
"Courier New": 10,
|
||||
|
|
|
@ -2578,7 +2578,7 @@ class LogWidget : EditBox {
|
|||
enabled = false;
|
||||
fontSize = makePointSize(9);
|
||||
//fontFace = "Consolas,Lucida Console,Courier New";
|
||||
fontFace = "Consolas,DejaVuSansMono,Lucida Sans Typewriter,Courier New,Lucida Console";
|
||||
fontFace = "Menlo,Consolas,DejaVuSansMono,DejaVu Sans Mono,Lucida Sans Typewriter,Courier New,Lucida Console";
|
||||
fontFamily = FontFamily.MonoSpace;
|
||||
minFontSize(pointsToPixels(6)).maxFontSize(pointsToPixels(32)); // allow font zoom with Ctrl + MouseWheel
|
||||
onThemeChanged();
|
||||
|
|
Loading…
Reference in New Issue