1
0
mirror of https://github.com/gryf/wmaker.git synced 2025-12-20 04:48:06 +01:00

- try fixed font for the technical drawing font if helvetica-12 is not

available to avoid crashing (Timo Juhani Lindfors <timo.lindfors@iki.fi>)
- german WINgs po file fix
This commit is contained in:
dan
2005-07-03 00:49:06 +00:00
parent ad641c1992
commit eca635cb5d
3 changed files with 7 additions and 3 deletions

View File

@@ -28,6 +28,8 @@ Changes since version 0.91.0:
- fixed bug with restoring maximized state from NetWM atoms. - fixed bug with restoring maximized state from NetWM atoms.
- fixed issue with GNUstep applications losing focus when all their windows - fixed issue with GNUstep applications losing focus when all their windows
are closed and there remains only their menu (Matt Rice <ratmice@yahoo.com>) are closed and there remains only their menu (Matt Rice <ratmice@yahoo.com>)
- try fixed font for the technical drawing font if helvetica-12 is not
available to avoid crashing (Timo Juhani Lindfors <timo.lindfors@iki.fi>)
Changes since version 0.90.0: Changes since version 0.90.0:

View File

@@ -144,7 +144,7 @@ msgstr "zusätzliche Daten hinter dem Ende der Propertyliste"
#: ../../WINGs/proplist.c:1602 #: ../../WINGs/proplist.c:1602
#, c-format #, c-format
msgid "could not get size for file '%s'" msgid "could not get size for file '%s'"
msgstr "konnte Dateigrösse von '%s' nicht ermitteln" msgstr "konnte Dateigröße von '%s' nicht ermitteln"
#: ../../WINGs/proplist.c:1614 #: ../../WINGs/proplist.c:1614
#, c-format #, c-format
@@ -185,7 +185,7 @@ msgstr "rename ('%s' to '%s') schlug fehl"
#: ../../WINGs/userdefaults.c:192 ../../WINGs/userdefaults.c:208 #: ../../WINGs/userdefaults.c:192 ../../WINGs/userdefaults.c:208
#, c-format #, c-format
msgid "cannot read domain from file '%s' when syncing" msgid "cannot read domain from file '%s' when syncing"
msgstr "Kannn bei der Synchronisation nicht aus Datei '%s' lesen" msgstr "Kann bei der Synchronisation nicht aus Datei '%s' lesen"
#: ../../WINGs/wcolor.c:198 ../../WINGs/wcolor.c:211 ../../WINGs/wcolor.c:250 #: ../../WINGs/wcolor.c:198 ../../WINGs/wcolor.c:211 ../../WINGs/wcolor.c:250
#: ../../WINGs/wcolor.c:291 #: ../../WINGs/wcolor.c:291

View File

@@ -807,7 +807,9 @@ wScreenInit(int screen_number)
scr->info_text_font = WMBoldSystemFontOfSize(scr->wmscreen, 12); scr->info_text_font = WMBoldSystemFontOfSize(scr->wmscreen, 12);
scr->tech_draw_font= XLoadQueryFont(dpy, "-adobe-helvetica-bold-r-*-*-12-*-*-*-*-*-*-*"); scr->tech_draw_font = XLoadQueryFont(dpy, "-adobe-helvetica-bold-r-*-*-12-*-*-*-*-*-*-*");
if (!scr->tech_draw_font)
scr->tech_draw_font = XLoadQueryFont(dpy, "fixed");
scr->gview = WCreateGeometryView(scr->wmscreen); scr->gview = WCreateGeometryView(scr->wmscreen);
WMRealizeWidget(scr->gview); WMRealizeWidget(scr->gview);