Skip to content

Commit 47b3c92

Browse files
author
jean-charles lefrancois
committed
update resources
1 parent 48455b0 commit 47b3c92

File tree

4 files changed

+3
-3
lines changed

4 files changed

+3
-3
lines changed
-1.15 KB
Binary file not shown.
-1.16 KB
Binary file not shown.
-1.15 KB
Binary file not shown.

sketch-to-trello.sketchplugin/Contents/Sketch/utils.cocoascript

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ var exportFunction = function(context){
3838
var chooseBoard = function(){
3939
getBoards();
4040
getOptions();
41-
var choice = createSelect('Choose a board...', activeBoardNames, options.board, 'board@2x.png')
41+
var choice = createSelect('Choose a board...', activeBoardNames, options.board, 'board.png')
4242
if (choice != -1) {
4343
chooseList(choice);
4444
}
@@ -48,7 +48,7 @@ var chooseList = function(choice){
4848
var boardId = [activeBoardIds objectAtIndex:choice];
4949
options.board = choice;
5050
getLists(boardId);
51-
var choice = createSelect('Choose a List...', activeListNames, options.list, 'list@2x.png')
51+
var choice = createSelect('Choose a List...', activeListNames, options.list, 'list.png')
5252
if (choice != -1) {
5353
chooseCard(choice);
5454
}
@@ -168,7 +168,7 @@ var createSelectBoard = function (msg, choice){
168168

169169
var alert = [[NSAlert alloc] init]
170170

171-
var iconUrl = [plugin urlForResourceNamed:"card@2x.png"]
171+
var iconUrl = [plugin urlForResourceNamed:"card.png"]
172172
var icon = [[NSImage alloc] initWithContentsOfURL:iconUrl];
173173

174174

0 commit comments

Comments
 (0)