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>
|
<debuglevel>0</debuglevel>
|
||||||
<debugids />
|
<debugids />
|
||||||
<versionlevel>0</versionlevel>
|
<versionlevel>0</versionlevel>
|
||||||
<versionids>EmbedStandardResources ForceLogs</versionids>
|
<versionids>EmbedStandardResources ForceLogs USE_FREETYPE</versionids>
|
||||||
<dump_source>0</dump_source>
|
<dump_source>0</dump_source>
|
||||||
<mapverbosity>0</mapverbosity>
|
<mapverbosity>0</mapverbosity>
|
||||||
<createImplib>0</createImplib>
|
<createImplib>0</createImplib>
|
||||||
|
|
|
@ -22,7 +22,7 @@ import std.file;
|
||||||
import std.string;
|
import std.string;
|
||||||
import std.utf;
|
import std.utf;
|
||||||
|
|
||||||
immutable int[string] STD_FONT_FACES = [
|
__gshared int[string] STD_FONT_FACES = [
|
||||||
"Arial": 12,
|
"Arial": 12,
|
||||||
"Times New Roman": 12,
|
"Times New Roman": 12,
|
||||||
"Courier New": 10,
|
"Courier New": 10,
|
||||||
|
|
|
@ -2578,7 +2578,7 @@ class LogWidget : EditBox {
|
||||||
enabled = false;
|
enabled = false;
|
||||||
fontSize = makePointSize(9);
|
fontSize = makePointSize(9);
|
||||||
//fontFace = "Consolas,Lucida Console,Courier New";
|
//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;
|
fontFamily = FontFamily.MonoSpace;
|
||||||
minFontSize(pointsToPixels(6)).maxFontSize(pointsToPixels(32)); // allow font zoom with Ctrl + MouseWheel
|
minFontSize(pointsToPixels(6)).maxFontSize(pointsToPixels(32)); // allow font zoom with Ctrl + MouseWheel
|
||||||
onThemeChanged();
|
onThemeChanged();
|
||||||
|
|
Loading…
Reference in New Issue