summarylogtreecommitdiffstats
path: root/fix_12_year_display.patch
diff options
context:
space:
mode:
Diffstat (limited to 'fix_12_year_display.patch')
-rw-r--r--fix_12_year_display.patch24
1 files changed, 0 insertions, 24 deletions
diff --git a/fix_12_year_display.patch b/fix_12_year_display.patch
deleted file mode 100644
index 27609410b157..000000000000
--- a/fix_12_year_display.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-Description: Fix display when both -12 and -year are given
-Author: Vino Fernando Crescini <jcrescin@cit.uws.edu.au>
-Bug-Debian: http://bugs.debian.org/228985
-
-Index: wmclock-1.0.14/wmclock.c
-===================================================================
---- wmclock-1.0.14.orig/wmclock.c 2010-12-22 13:12:28.000000000 +0100
-+++ wmclock-1.0.14/wmclock.c 2011-06-02 12:11:51.233840631 +0200
-@@ -849,7 +849,14 @@
- #endif /* !ONLY_SHAPED_WINDOW */
- for (i = 0; i < NUM_TIME_POSITIONS; i++)
- {
-- xPos[i] += enable12HourClock ? timePos24[i] : timePos12[i];
-+ if (enable12HourClock && (!enableYearDisplay))
-+ {
-+ xPos[i] += timePos24[i];
-+ }
-+ else
-+ {
-+ xPos[i] += timePos12[i];
-+ }
- }
-
- /* Open the display */