opnsense-ports/devel/subcommander2/files/patch-subcommander__BookmarkViewItemModel.cpp
Franco Fichtner 8cb1a96ede ports: pull in a snapshot of the FreeBSD ports tree
Taken from:	https://github.com/freebsd/freebsd-ports.git
Commit id:	5070672073b68be364139bc6b3a89100bd17d331
2014-11-09 14:03:21 +01: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;
}