*Hildon-ize the app for better widget support.
[stopish] / src / timer.c
index ca1c41d..41f9f3a 100644 (file)
@@ -35,7 +35,7 @@ static long int timerSave = 0;
 gint stopish_timeout_cb( gpointer data )
 {
     GtkLabel *timerLabel;
-    char formatBuffer[64];
+    char formatBuffer[128];
     char *tempString;
 
     if ( !data )
@@ -45,7 +45,9 @@ gint stopish_timeout_cb( gpointer data )
 
     // print to screen
     tempString = stopish_get_time_string(  );
-    sprintf( formatBuffer, "<span font_family=\"monospace\" size=\"xx-large\">%s</span>", tempString );
+    sprintf( formatBuffer, "<span font_family=\"monospace\" "
+                          "size=\"70000\" weight=\"ultrabold\">"
+                          "%s</span>", tempString );
     free( tempString );
     gtk_label_set_markup( GTK_LABEL( timerLabel ), formatBuffer );