summaryrefslogtreecommitdiff
path: root/src/trg-files-model.c
diff options
context:
space:
mode:
authorGravatar Alan Fitton <ajf@eth0.org.uk>2011-09-30 12:30:03 +0000
committerGravatar Alan Fitton <ajf@eth0.org.uk>2011-09-30 12:30:03 +0000
commitdfbdc07dfc73bf67f2b78bcb1a4ce4ec95539fbf (patch)
treeda6fae201dba5c1d3053ae828b6482ad005206c1 /src/trg-files-model.c
parenta61f54aadce62bb71e076f3902a3ca0c59fadb20 (diff)
setting a file unwanted would set the icon to GTK_STOCK_CANCEL, then when it was acknowledged the model would set it to STOCK_CLOSE. change the model to STOCK_CANCEL also so this can't be seen.
Diffstat (limited to 'src/trg-files-model.c')
-rw-r--r--src/trg-files-model.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/trg-files-model.c b/src/trg-files-model.c
index 7da053f..956e6f5 100644
--- a/src/trg-files-model.c
+++ b/src/trg-files-model.c
@@ -79,7 +79,7 @@ trg_files_model_iter_update(TrgFilesModel * model,
gtk_list_store_set(GTK_LIST_STORE(model), filesIter,
FILESCOL_ICON,
wanted ? GTK_STOCK_FILE :
- GTK_STOCK_STOP, FILESCOL_WANTED, wanted,
+ GTK_STOCK_CANCEL, FILESCOL_WANTED, wanted,
FILESCOL_PRIORITY, priority, -1);
}
}