diff options
author | Michael Lauer <mickey@vanille-media.de> | 2007-10-24 08:19:07 +0000 |
---|---|---|
committer | Michael Lauer <mickey@vanille-media.de> | 2007-10-24 08:19:07 +0000 |
commit | 5e85814e7539a05bfd402495b7f9c09f92cb580e (patch) | |
tree | 46c393f1be83256d63f18272c9e17b13dfff94ef /packages/openmoko2/libjana | |
parent | a31d1fd4a686ad35a7b5c543eea00652ffb3e705 (diff) |
libjana: slightly patch it to make more of the background wallpaper shine through
Diffstat (limited to 'packages/openmoko2/libjana')
-rw-r--r-- | packages/openmoko2/libjana/.mtn2git_empty | 0 | ||||
-rw-r--r-- | packages/openmoko2/libjana/clockpatch.patch | 31 |
2 files changed, 31 insertions, 0 deletions
diff --git a/packages/openmoko2/libjana/.mtn2git_empty b/packages/openmoko2/libjana/.mtn2git_empty new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/packages/openmoko2/libjana/.mtn2git_empty diff --git a/packages/openmoko2/libjana/clockpatch.patch b/packages/openmoko2/libjana/clockpatch.patch new file mode 100644 index 0000000000..7b20222239 --- /dev/null +++ b/packages/openmoko2/libjana/clockpatch.patch @@ -0,0 +1,31 @@ +Index: jana/libjana-gtk/jana-gtk-clock.c +=================================================================== +--- jana.orig/libjana-gtk/jana-gtk-clock.c ++++ jana/libjana-gtk/jana-gtk-clock.c +@@ -695,7 +695,7 @@ draw_digital_clock (JanaGtkClock *clock, + cairo_fill (cr); + + /* Draw dark outline frame */ +- thickness = width/20; ++ thickness = width/40; + cairo_new_path (cr); + cairo_rectangle (cr, thickness/2, thickness/2, + width - thickness, height - thickness); +@@ -703,7 +703,7 @@ draw_digital_clock (JanaGtkClock *clock, + cairo_set_source_rgb (cr, base_color[0]/2, + base_color[1]/2, base_color[2]/2); + cairo_stroke (cr); +- ++#if 0 + /* Draw main outline frame */ + cairo_new_path (cr); + cairo_rectangle (cr, thickness, thickness, +@@ -728,7 +728,7 @@ draw_digital_clock (JanaGtkClock *clock, + base_color[1]/1.5, base_color[2]/1.5); + cairo_set_line_width (cr, thickness/2); + cairo_stroke (cr); +- ++#endif + cairo_identity_matrix (cr); + } + |