Re: copypaste in PRICE does not work on GS

2015-03-03 Thread Riccardo Mottola
Hi, On 2015-02-28 13:45:54 +0100 Riccardo Mottola riccardo.mott...@libero.it wrote: Hi, PRICE allows you to copy a currently open image. (If you create a new document you can also paste in a new image) This however does only work on Mac, not on GNUstep. Can someone help me to

Re: copypaste in PRICE does not work on GS

2015-03-03 Thread Germán Arias
El mar, 03-03-2015 a las 16:31 +0100, Riccardo Mottola escribió: Hi, On 2015-02-28 13:45:54 +0100 Riccardo Mottola riccardo.mott...@libero.it wrote: Hi, PRICE allows you to copy a currently open image. (If you create a new document you can also paste in a new image) This

performSelectorOnMainThread: issue

2015-03-03 Thread Amr Aboelela
Hi, I noticed that performSelectorOnMainThread: hangs, and to solve this issue I had to do the following in NSRunLoop.m: Instead of: - (BOOL) runMode: (NSString*)mode beforeDate: (NSDate*)date { ... d = [self limitDateForMode: mode]; if (d == nil) { [arp drain];

Re: copypaste in PRICE does not work on GS

2015-03-03 Thread Germán Arias
My previous assumption was wrong. Just add: [self setAllowsCutCopyPaste: YES]; at -awakeFromNib in PRImageView.m. Seems like in Cocoa the default value is YES. Germán. El mar, 03-03-2015 a las 18:00 -0600, Germán Arias escribió: El mar, 03-03-2015 a las 16:31 +0100, Riccardo Mottola escribió:

Add DLog to NSObject.h

2015-03-03 Thread Amr Aboelela
Hi, Can we add DLog to NSObject.h it is becoming standard now for developers to use DLog, even though it is not included by default in Apple's NSObject.h, it would be nice if we add it in the GNUstep environment. Here are the definition lines: #ifdef DEBUG # define DLog(fmt, ...)