summaryrefslogtreecommitdiff
path: root/gtk2_ardour/editor_ops.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2009-03-17 15:09:57 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2009-03-17 15:09:57 +0000
commit94d0bad82f230efe333061412dec55e8d04b3446 (patch)
treed38a0f44dee4977cb08b0a4a023bcf6d150eece8 /gtk2_ardour/editor_ops.cc
parent53e0635a8eb1d6d1e19bbb7266e4a8f3864a338b (diff)
fix freeze progress bar display
git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@4863 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/editor_ops.cc')
-rw-r--r--gtk2_ardour/editor_ops.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk2_ardour/editor_ops.cc b/gtk2_ardour/editor_ops.cc
index 579bbb3f2a..fe30c731cd 100644
--- a/gtk2_ardour/editor_ops.cc
+++ b/gtk2_ardour/editor_ops.cc
@@ -3625,7 +3625,7 @@ Editor::freeze_thread ()
gint
Editor::freeze_progress_timeout (void *arg)
{
- interthread_progress_bar.set_fraction (current_interthread_info->progress/100);
+ interthread_progress_bar.set_fraction (current_interthread_info->progress);
return !(current_interthread_info->done || current_interthread_info->cancel);
}