freebsd-ports/devel/subcommander2/files/patch-subcommander__BookmarkViewItemModel.cpp
Marcelo Araujo 0b1cf879c5 - Update to 2.0.0.b5.2.
PR:		ports/172504
Submitted by:	KATO Tsuguru <tkato432@yahoo.com>
2012-12-13 11:54:14 +00:00

12 lines
362 B
C++

--- subcommander/BookmarkViewItemModel.cpp.orig 2009-09-20 18:24:16.000000000 +0900
+++ subcommander/BookmarkViewItemModel.cpp 2012-05-10 05:38:50.000000000 +0900
@@ -219,7 +219,8 @@
if( !advance )
return false;
- _frame = ++_frame % ActiveDecorationFrames;
+ ++_frame;
+ _frame = _frame % ActiveDecorationFrames;
return true;
}