Skip to content

Commit b6382b1

Browse files
committed
oops, progress feedback was accidentally disabled
I wondered why I seldom saw progress bars, argh
1 parent e097140 commit b6382b1

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

ChangeLog

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
started 7.37.0 28/10/13
22
- add "merge into ws" item to rmb tab gutter menu
3+
- oops, progress feedback was accidentally disabled
34

45
started 7.36.4 18/10/13
56
- fix bootstrap warnings

src/imageinfo.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -709,7 +709,7 @@ imageinfo_proxy_add( Imageinfo *imageinfo )
709709
{
710710
/* Only if we're running interactively.
711711
*/
712-
if( !main_option_batch )
712+
if( main_option_batch )
713713
return;
714714

715715
/* Already being monitored?

src/progress.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ progress_update_percent( int percent, int eta )
157157
"%d second left", "%d seconds left",
158158
eta ), eta );
159159
else
160-
/* The empty string changes the height of the prgress bar
160+
/* The empty string changes the height of the progress bar
161161
* argh.
162162
*/
163163
vips_buf_appendf( &progress->feedback, " " );

0 commit comments

Comments
 (0)