diff options
author | rbuj <[email protected]> | 2019-06-22 10:44:09 +0200 |
---|---|---|
committer | rbuj <[email protected]> | 2019-06-24 11:37:02 +0200 |
commit | 5f299dbf83d7d8f49c9e73f8c2cec9a4cce42cfb (patch) | |
tree | f9cb9812c4f7755116708ea0a6fa741a7f9d976a /capplets/time-admin/src/main.c | |
parent | 39028e317750bcc4c81d762c25f2c88f5c8f3f56 (diff) | |
download | mate-control-center-5f299dbf83d7d8f49c9e73f8c2cec9a4cce42cfb.tar.bz2 mate-control-center-5f299dbf83d7d8f49c9e73f8c2cec9a4cce42cfb.tar.xz |
time-admin: Don't set font size/color for regular controls
Themes and Appearance
Diffstat (limited to 'capplets/time-admin/src/main.c')
-rw-r--r-- | capplets/time-admin/src/main.c | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/capplets/time-admin/src/main.c b/capplets/time-admin/src/main.c index fb9e87a2..6a2f2028 100644 --- a/capplets/time-admin/src/main.c +++ b/capplets/time-admin/src/main.c @@ -218,9 +218,8 @@ static GtkWidget * TimeZoneAndNtp(TimeAdmin *ta) table = gtk_grid_new(); gtk_grid_set_column_homogeneous(GTK_GRID(table),TRUE); - TimeZoneLabel = gtk_label_new(NULL); + TimeZoneLabel = gtk_label_new (_("Time Zone:")); gtk_widget_set_halign(TimeZoneLabel,GTK_ALIGN_START); - SetLableFontType(TimeZoneLabel,11,_("Time Zone:")); gtk_grid_attach(GTK_GRID(table) ,TimeZoneLabel, 0 , 0 , 1 , 1); SetupTimezoneDialog(ta); @@ -234,9 +233,8 @@ static GtkWidget * TimeZoneAndNtp(TimeAdmin *ta) gtk_grid_attach(GTK_GRID(table) ,ta->TimeZoneButton,1 , 0 , 3 , 1); - NtpSyncLabel = gtk_label_new(NULL); + NtpSyncLabel = gtk_label_new (_("Ntp Sync:")); gtk_widget_set_halign(NtpSyncLabel,GTK_ALIGN_START); - SetLableFontType(NtpSyncLabel,11,_("Ntp Sync:")); gtk_grid_attach(GTK_GRID(table) ,NtpSyncLabel, 0 , 1 , 1 , 1); ta->NtpSyncSwitch = gtk_switch_new(); @@ -286,8 +284,7 @@ static GtkWidget *SetClock(TimeAdmin *ta) table = gtk_grid_new(); gtk_grid_set_column_homogeneous(GTK_GRID(table),TRUE); - TimeLabel = gtk_label_new(NULL); - SetLableFontType(TimeLabel,13,_("Set Time")); + TimeLabel = gtk_label_new (_("Set Time")); gtk_widget_set_halign(TimeLabel,GTK_ALIGN_CENTER); gtk_widget_set_valign(TimeLabel,GTK_ALIGN_START); gtk_widget_set_hexpand(TimeLabel,FALSE); @@ -322,9 +319,8 @@ static GtkWidget *SetDate(TimeAdmin *ta) table = gtk_grid_new(); gtk_grid_set_column_homogeneous (GTK_GRID(table), TRUE); - DateLabel = gtk_label_new (NULL); - SetLableFontType (DateLabel, 13, _("Set Date")); - gtk_grid_attach (GTK_GRID(table), DateLabel, 1, 0, 2, 2); + DateLabel = gtk_label_new (_("Set Date")); + gtk_grid_attach(GTK_GRID(table) ,DateLabel, 1 , 0 , 2 , 2); LocalTime = GetCurrentTime (); ta->Calendar = gtk_calendar_new (); |