From 5af4dde3f3a4bf1d942394c6124f08906f82068e 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 df9399275..cac087be1 100644 --- a/src/gui/torrentcontentmodelitem.h +++ b/src/gui/torrentcontentmodelitem.h @@ -37,7 +37,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;