mirror of
https://github.com/transmission/transmission
synced 2024-12-24 16:52:39 +00:00
minor display tweak in gtk
This commit is contained in:
parent
4f33a8da42
commit
ac98f63060
1 changed files with 1 additions and 1 deletions
|
@ -38,7 +38,7 @@
|
|||
#include "conf.h"
|
||||
#include "util.h"
|
||||
|
||||
#define BESTDECIMAL(d) (10.0 > (d) ? 2 : (100.0 > (d) ? 1 : 0))
|
||||
#define BESTDECIMAL(d) ( (d)<100 ? 1 : 0 )
|
||||
|
||||
static void
|
||||
errcb(GtkWidget *wind, int resp, gpointer data);
|
||||
|
|
Loading…
Reference in a new issue