wacom: Add second larger outer circle
This commit is contained in:
parent
2669ec6ead
commit
0e6e52f822
1 changed files with 5 additions and 0 deletions
|
@ -40,6 +40,7 @@
|
|||
/* Clock appereance */
|
||||
#define CROSS_LINES 50
|
||||
#define CROSS_CIRCLE 7
|
||||
#define CROSS_CIRCLE2 30
|
||||
#define CLOCK_RADIUS 50
|
||||
#define CLOCK_LINE_WIDTH 10
|
||||
|
||||
|
@ -151,6 +152,10 @@ draw(GtkWidget *widget, cairo_t *cr, gpointer data)
|
|||
|
||||
cairo_arc(cr, calib_area->X[i], calib_area->Y[i], CROSS_CIRCLE, 0.0, 2.0 * M_PI);
|
||||
cairo_stroke(cr);
|
||||
|
||||
cairo_set_line_width(cr, 2);
|
||||
cairo_arc(cr, calib_area->X[i], calib_area->Y[i], CROSS_CIRCLE2, 0.0, 2.0 * M_PI);
|
||||
cairo_stroke(cr);
|
||||
}
|
||||
|
||||
/* Draw the clock background */
|
||||
|
|
Loading…
Add table
Reference in a new issue