summaryrefslogtreecommitdiff
path: root/thunar/thunar-progress-view.c
diff options
context:
space:
mode:
authorNick Schermer <nick@xfce.org>2012-09-30 18:36:35 +0200
committerNick Schermer <nick@xfce.org>2012-09-30 18:36:35 +0200
commit0901472b684d8621bbbbc50c04d95eb5783206f8 (patch)
tree09f54cc14a4d11f930451a1ea51906054db7ace8 /thunar/thunar-progress-view.c
parent9e0684eecacc7d6bc3c295f3910d0a4bfa761c21 (diff)
downloadthunar-0901472b684d8621bbbbc50c04d95eb5783206f8.tar.gz
Set cancel message in progress label, not bar.
Diffstat (limited to 'thunar/thunar-progress-view.c')
-rw-r--r--thunar/thunar-progress-view.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/thunar/thunar-progress-view.c b/thunar/thunar-progress-view.c
index d3461eb4..43a3afca 100644
--- a/thunar/thunar-progress-view.c
+++ b/thunar/thunar-progress-view.c
@@ -350,9 +350,8 @@ thunar_progress_view_cancel_job (ThunarProgressView *view)
g_signal_handlers_disconnect_matched (view->job, G_SIGNAL_MATCH_FUNC, 0, 0, NULL,
thunar_progress_view_info_message, NULL);
- /* update the progress bar text */
- gtk_progress_bar_set_text (GTK_PROGRESS_BAR (view->progress_bar),
- _("Cancelling..."));
+ /* update the status text */
+ gtk_label_set_text (GTK_LABEL (view->progress_label), _("Cancelling..."));
}
}