summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/mate-screensaver-preferences.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/mate-screensaver-preferences.c b/src/mate-screensaver-preferences.c
index 1bcdcaf..39336c9 100644
--- a/src/mate-screensaver-preferences.c
+++ b/src/mate-screensaver-preferences.c
@@ -1034,10 +1034,7 @@ format_value_callback_time (GtkScale *scale,
gint pad_size;
/* get the value representation as a string */
- if (value == 0)
- time_str = g_strdup (_("Never"));
- else
- time_str = time_to_string_text ((long) (value * 60.0));
+ time_str = time_to_string_text ((long) (value * 60.0));
/* Now, adjust the string so the representation for the bounds are the
* longest ones, and try and adjust the length as smoothly as possible.