diff options
author | Todd C. Miller <Todd.Miller@courtesan.com> | 2007-10-22 21:14:03 +0200 |
---|---|---|
committer | Matthieu Herrb <matthieu@bluenote.herrb.com> | 2007-10-22 21:14:31 +0200 |
commit | 870ebb6762f63c6587ee75aba50ee93257fa610b (patch) | |
tree | 72b5d8ddb9c08a82007e26fb94e6aeb7ced30f3b | |
parent | 1ea56dd7d67cef80f364fafcf985fb4a6846109d (diff) |
Fix logic inversion in geometry computation in -norender -digital mode.
-rw-r--r-- | Clock.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -685,7 +685,7 @@ Initialize (Widget request, Widget new, ArgList args, Cardinal *num_args) } } - if (!no_locale) + if (no_locale) #endif /* NO_I18N */ { if (w->clock.font == NULL) |