From d76a84048b8c1beb5f6fdb5b0065de2d1e264a6a Mon Sep 17 00:00:00 2001 From: Gabriele Date: Fri, 27 Mar 2015 17:39:34 +0100 Subject: [PATCH] Increase priority value of "High" It was observed that setting the priority of a file to High has almost no effect, so increase its value. --- src/gui/torrentcontentmodelitem.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/torrentcontentmodelitem.h b/src/gui/torrentcontentmodelitem.h index e05825c9f..fd1979dde 100644 --- a/src/gui/torrentcontentmodelitem.h +++ b/src/gui/torrentcontentmodelitem.h @@ -35,7 +35,7 @@ #include namespace prio { -enum FilePriority {IGNORED=0, NORMAL=1, HIGH=2, MAXIMUM=7, MIXED=-1}; +enum FilePriority {IGNORED=0, NORMAL=1, HIGH=6, MAXIMUM=7, MIXED=-1}; } class TorrentContentModelFolder;