iconWindow frame

2003-03-05 Thread Matt Rice
I noticed that [[NSApp iconWindow] frame] seems to work correctly running with UseWindowMakerIcons NO, but when running with UseWindowMakerIcons YES, the frame tends to consistantly return 0,0,64,64 and the window delegate never gets a windowDidMove notification and running xprop -spy on it seem

guile 1.6.0

2003-03-14 Thread Matt Rice
i did some hacking around to get it compiling/running alot of stuff isn't working yet and it's kinda buggy, but it might be a good start you can find it here http://vespertine.pc.ashlandfiber.net/matt/gstep-guile-1.6.3.diff the issues I know about are dynamic linking to gui isn't working properly

guile-1.6, and compiling without debugging symbols

2003-04-04 Thread Matt Rice
here's a patch for all the places where i'm still getting warnings of deprecation from guile with 1.6. it also changes the dynamic-call's so it works when you compile without debugging symbols.the error is undefined reference to scm_init_guile this probably breaks compiling with 1.4 and compiling

menu's in lower left corner

2003-04-06 Thread Matt Rice
here's a patch for GWorkspace, it makes the selected Icon in the browser view have a right click menu of "Open with" (which display's all apps for the icon's extension) and their role.. on my machine it always appears in the lower left hand corner mattIndex: GWLib/BIcon.h =

gswapp.make

2003-05-31 Thread Matt Rice
it seems like make/Instance/gswapp.make was missing a ")" which was causing make install for gsweb apps to fail. attached is a unified diff. Matt __ Do you Yahoo!? Yahoo! Calendar - Free online calendar with sync to Outlook(TM). http://calendar.yahoo.com gswapp.m

Re: bug in Miniaturize all (was window closing in Terminal)

2003-04-12 Thread Matt Rice
I have also noticed this bug, although it doesn't seem to be specific to Terminal (hence I changed the subject).. at http://vespertine.pc.ashlandfiber.net/matt/crack.png there's a screenshot (the app really shouldn't have a miniaturize all button...) but i added it to show some more effects.. of

Re: NSWorkspace launchedApplications method

2003-06-18 Thread Matt Rice
--- Adam Fedor <[EMAIL PROTECTED]> wrote: > It's a bummer there has to be a deamon just for > handling this. agreed > Is there > anyway to combine it with something else? well there's gdnc which belongs to base. Fred already addressed this though. attached is a patch and a test thing anyways..

NSDocument init

2003-07-27 Thread Matt Rice
NSDocument's init method calls [self setFileType: [[[self class] writableTypes] objectAtIndex: 0]]; writableTypes ignores NSRoles of type Viewer. so if an app was a NSDocument based Viewer, or had no NSTypes this call would fail with "index out of bounds". patch checks the count of the types ar

make bug

2003-08-28 Thread Matt Rice
I noticed that ADDITIONAL_INSTALL_DIRS seems to be documented as a global variable but only seems to be used by libraries... attached is a patch, if someone could verify it for correctness additionally I was thinking it might be nice have in common.make something to the effect of... GNUSTEP_APPL

NSDocument close & NSApplication targetForAction

2003-09-16 Thread Matt Rice
bug when using NSDocument, the key window always responds to close and so NSDocument close never gets called.. and reopening a document would show the one which you just "closed" rather than reading from disk.. (tested with Ink..) this patch moves the check for document based apps up above the key

Re: Bundles on darwin (gnu-gnu-gnu)

2003-09-25 Thread Matt Rice
--- Adam Fedor <[EMAIL PROTECTED]> wrote: > > On Wednesday, September 24, 2003, at 10:08 AM, Carl > Eugen Hoyos wrote: > > > The behaviour of test nsbundle on darwin has > changed: > > > > Output is now: > > ... > > Retreiving principal class... > > * ERROR: Can't find principal class > > Testin

Re: Issues with last Friday's CVS

2003-10-06 Thread Matt Rice
--- "Chris B. Vetter" <[EMAIL PROTECTED]> wrote: > I've also noticed a (reproducable) misbehaviour > while running Terminal > (and quite possibly others). > > To reproduce, start Terminal, then click on 'Windows > -> Miniaturize all' attached is a patch for this.. matt

NSUserName() returns wrong user and..

2003-11-08 Thread Matt Rice
two seperate things in this email... srry 1) basically NSUserName() depends on the LOGNAME environment variable which isn't updated when using su (unless you use su -) getlogin() has the same issue.. this can cause issues like where NSHomeDirectory() returns the wrong home directory and you get acc

gdomap on hurd

2004-04-16 Thread Matt Rice
here's a patch for gdomap and 2 files. ignores EINTR which seems to happen and use a function for use on systems like hurd which don't define MAXHOSTNAMELEN. it uses a public domain function xgethostname by the Neal Walfield one of the hurd developers, origin http://web.walfield.org/pub/people/ne

NSTableView and NSIndexSet

2004-05-22 Thread Matt Rice
it seems as though there's a weird bug in NSTableView where it doesn't redisplay rows correctly you can get it by taking any table view which allows multiple selection and dragging up then down and so forth it doesn't always happen though, like there is some sort of randomness in the event system

NSTableView/NSCell/NSScrollView stuff

2004-07-09 Thread Matt Rice
plethora of patches NSTableView.misc.diff: 2 things in here, one of them is probably something which we need to think about/discuss i'd split it up but it'd just cause conflicts... a) don't copy/destroy the cell, there is a remark that it may not be needed in the source, and it causes problems wh

NSTimeZone assumption

2004-07-10 Thread Matt Rice
in NSTimeZone -initWithName:data: it assumes that the time zone name and the tzdata file have the same filename, but this is broken with the PST timezone which has a filename of PST8PDT locally I patched it to just return /etc/localtime if it can't find the zonefile since I don't use anything whi

NSMatrix feature

2004-07-16 Thread Matt Rice
dunno if anyone is using this feature either knowingly or unknowingly but if AutosizesCells is set to NO and setFrame: or setFrameSize: is called on NSMatrix, it resizes the inter cell spacing to fit the new frame, I don't think it should do this (at least without a way to disable it) and my copy o

Re: [GNUstep-packagers] patch for observance of $HOME

2004-08-06 Thread Matt Rice
personally I don't think we should trust environment variables for reasons in the archive.. http://lists.gnu.org/archive/html/bug-gnustep/2003-11/msg00015.html and would rather if we did something like cleanse make/GNUstep.sh of writes to the user root, so that it isn't breaking the sandbox if pos

[bugs #9609] unnecessary calls to tableView:setObjectValue:forTableColumn:row;

2004-09-12 Thread matt rice
This mail is an automated notification from the bugs tracker of the project: GNUstep. /**/ [bugs #9609] Latest Modifications: Changes by: matt rice <[EMAIL PROTECTED]> 'Date: Sun

[bugs #10501] NSScrollView displays corner view when not needed

2004-09-26 Thread matt rice
This mail is an automated notification from the bugs tracker of the project: GNUstep. /**/ [bugs #10501] Latest Modifications: Changes by: matt rice <[EMAIL PROTECTED]> 'Date:

GSObJCRuntime (subclasses)

2004-10-16 Thread Matt Rice
here's 2 additions for GSObjCRuntime for finding subclasses of a class, and a tweak for objc-load.m for it to work with classes loaded from bundles. unless there are any objections i'll hopefully commit this in 24 hours... (including an appropriate ChangeLog entry, that it seems i forgot.) matt

[bugs #11134] ./configure meaningless error or similar

2004-11-25 Thread matt rice
This mail is an automated notification from the bugs tracker of the project: GNUstep. /**/ [bugs #11134] Latest Modifications: Changes by: matt rice <[EMAIL PROTECTED]> 'Date:

[bugs #11344] missing framework headers symlink when headers are in subproject

2004-12-17 Thread matt rice
Submitted by: matt rice On: Fri 12/17/2004 at 21:57 Category: Makefiles Severity: 1 - None Item Group: Bug Resolution: None Privacy: Public Assigned to: None Status: Open Summary: missing framework headers symlink when headers are in subproject Original Submission: the ObjcUni

[bugs #4692] problem with registerUndoWithTarget: selector: object:

2005-01-30 Thread matt rice
Update of bugs #4692 (project gnustep): Status: Unreproducible => Fixed ___ Follow-up Comment #2: according to the documentation registerUndoWithTarget:selector:object: should retain the object

[bugs #4635] NSButtonCell: value is title instead of state

2005-02-12 Thread matt rice
Follow-up Comment #3, bugs #4635 (project gnustep): this bug is actually only partially fixed. the -objectValue -setObjectValue: part is fixed (and imho the important part.) the -stringValue -setStringValue: is not, still sets the title where it should set the state. though this is a delicat

[bugs #12401] framework fails to build if FRAMEWORK_NAME contains - or +

2005-03-20 Thread matt rice
URL: Summary: framework fails to build if FRAMEWORK_NAME contains - or + Project: GNUstep Submitted by: ratmice Submitted on: Mon 03/21/2005 at 03:02 Category:

[bugs #10958] *_HEADER_FILES_DIR not properly used when building frameworks.

2005-03-20 Thread matt rice
Additional Item Attachment, bugs #10958 (project gnustep): File name: 10958.diff Size:0 KB patch. ___ Reply to this item at:

[bug #12531] Gorm doesn't utilize IBResourceManager

2005-04-01 Thread matt rice
URL: Summary: Gorm doesn't utilize IBResourceManager Project: GNUstep Submitted by: ratmice Submitted on: Sat 04/02/2005 at 07:30 Category: Gorm

Drag broken under X backends

2005-04-02 Thread Matt Rice
the -[GSDragView windowAcceptingDnDunder:windowRef:] calls the backend's findWindowAt:windowRef:excluding: the default implementation calls -subclassResponsibility: and this is only implemented for the win32 backend. matt __ Do you Yahoo!? Ya

[bug #12576] alternative to the "-framework" flag

2005-04-06 Thread matt rice
Follow-up Comment #3, bug #12576 (project gnustep): not sure if apple does that, they may do that, but otherwise 'relocatable frameworks' are also supported, which basically link to a path relative to the search path. which you can set through DYLD_FRAMEWORK_PATH __

[bug #12401] framework fails to build if FRAMEWORK_NAME contains - or +

2005-04-06 Thread matt rice
Follow-up Comment #2, bug #12401 (project gnustep): I only noticed this while I was converting my local copy of gnustep-base and gnustep-gui to frameworks, and before I'd changed their names to Foundation and AppKit, in general I would say no, we don't need to support the -/+ in framework names,

[bug #12575] suggestion about header files in frameworks

2005-04-08 Thread matt rice
Follow-up Comment #4, bug #12575 (project gnustep): -framework in gcc is a snap to implement, it only sends -framework to ld, this is in gcc 4 already but only enabled for darwin in gcc/config/darwin-c.c. (only -F is needed for the header lookup) ld support is blocked by ld.so support search for

[bug #12531] Gorm doesn't utilize IBResourceManager

2005-04-10 Thread matt rice
Update of bug #12531 (project gnustep): Open/Closed: In Test => Closed ___ Follow-up Comment #3: Works good, Thanks ___ Reply to this

[bug #12691] make clean on subprojects with resources leaves Resources/ directory

2005-04-14 Thread matt rice
URL: Summary: make clean on subprojects with resources leaves Resources/ directory Project: GNUstep Submitted by: ratmice Submitted on: Thu 04/14/2005 at 21:44

[RFC] Additional native-lib variables.

2005-04-23 Thread Matt Rice
to manage -I/-L/-F, not a very flexible mechansim, so i understand any disinterest, comments should explain it and example project using it.. matt __ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.

[bug #13583] Application is no longer active with no open windows

2005-06-30 Thread matt rice
Update of bug #13583 (project gnustep): Open/Closed:Open => Declined ___ Follow-up Comment #1: while i can't argue that this is a bug this is a windowmaker problem, patch has been sent to t

[bug #9608] can't drag to an empty NSTableView

2005-07-19 Thread matt rice
Follow-up Comment #1, bug #9608 (project gnustep): here is a patch for this, it makes the table view as large as its containing clip view, and handles the case where the user clicks outside the available rows.. though i'm skeptical about applying it this close to a release... ___

Re: NSAttributedString in table data cells

2005-07-21 Thread Matt Rice
--- Fred Kiefer <[EMAIL PROTECTED]> wrote: > Sašo Kiselkov wrote: > > Quoting Fred Kiefer <[EMAIL PROTECTED]>: > > > >> > >>Sa?o Kiselkov wrote: > >>>I found that when my code returns an > NSAttributedString as the value for a > >>table > >>>data cell it doesn't display it as an attributed > st

[bug #4623] EOEditingContext, EODataSource etc don't encode/decode

2005-07-22 Thread matt rice
Update of bug #4623 (project gnustep): Status:None => Fixed Open/Closed:Open => Closed ___ Follow-up Comment #1: I believe this shou

NSPopUpButton icon buttons patch...

2005-07-25 Thread Matt Rice
heres a patch and a little test program.. which tries to get small pull-down buttons as explained here.. http://developer.apple.com/documentation/UserExperience/Conceptual/OSXHIGuidelines/XHIGControls/chapter_18_section_3.html#//apple_ref/doc/uid/2957-TP3359-BAADHEBI where i'd like to ha

[bug #13990] Gorm document->New Module->New Inspector creates NSWindow

2005-07-30 Thread matt rice
URL: Summary: Gorm document->New Module->New Inspector creates NSWindow Project: GNUstep Submitted by: ratmice Submitted on: Sun 07/31/2005 at 02:10 Category:

[bug #13994] window/panel size inspector selected textfields don't reset on selection change

2005-07-31 Thread matt rice
URL: Summary: window/panel size inspector selected textfields don't reset on selection change Project: GNUstep Submitted by: ratmice Submitted on: Sun 07/31/2005 at 13:47

[bug #15260] NSTableView multiple selection key modifiers swapped

2005-12-21 Thread matt rice
URL: Summary: NSTableView multiple selection key modifiers swapped Project: GNUstep Submitted by: ratmice Submitted on: Wed 12/21/05 at 14:09 Category: Gui/App

[bug #15261] in NSTableView selecting a contiguous region with no selected row throws an exception

2005-12-21 Thread matt rice
URL: Summary: in NSTableView selecting a contiguous region with no selected row throws an exception Project: GNUstep Submitted by: ratmice Submitted on: Wed 12/21/05 at 14:27

[bug #15316] NSTableView NSInvalidArugmentException on click

2005-12-31 Thread matt rice
Update of bug #15316 (project gnustep): Open/Closed:Open => Closed ___ Follow-up Comment #1: fixed in cvs, the exception was actually coming from the data source when setObjectValue: was c

[bug #15990] gopen'ing a gorm file twice opens it twice

2006-03-04 Thread matt rice
URL: Summary: gopen'ing a gorm file twice opens it twice Project: GNUstep Submitted by: ratmice Submitted on: Sat 03/04/06 at 17:21 Category: Gorm

[bug #15987] deleting a table column sometimes causes a segfault

2006-03-04 Thread matt rice
URL: Summary: deleting a table column sometimes causes a segfault Project: GNUstep Submitted by: ratmice Submitted on: Sat 03/04/06 at 17:16 Category: Gorm

[bug #15988] resized text view wraps at original size

2006-03-04 Thread matt rice
URL: Summary: resized text view wraps at original size Project: GNUstep Submitted by: ratmice Submitted on: Sat 03/04/06 at 17:18 Category: Gorm

[bug #16048] odd behaviour when grouping table view with selected column

2006-03-09 Thread matt rice
URL: Summary: odd behaviour when grouping table view with selected column Project: GNUstep Submitted by: ratmice Submitted on: Thu 03/09/06 at 22:35 Category:

[bug #16049] exception when making connection from table column under circumstance

2006-03-09 Thread matt rice
URL: Summary: exception when making connection from table column under circumstance Project: GNUstep Submitted by: ratmice Submitted on: Thu 03/09/06 at 22:53

[bug #16049] exception when making connection from table column under circumstance

2006-03-10 Thread matt rice
Update of bug #16049 (project gnustep): Category:None => Gorm Item Group:None => Bug ___ Follow-up Comment #1: forgot to mention

[bug #16050] exception when deleting table column

2006-03-10 Thread matt rice
URL: Summary: exception when deleting table column Project: GNUstep Submitted by: ratmice Submitted on: Thu 03/09/06 at 23:27 Category: Gorm S

[bug #15989] removing/adding a palette fails

2006-03-10 Thread matt rice
URL: Summary: removing/adding a palette fails Project: GNUstep Submitted by: ratmice Submitted on: Sat 03/04/06 at 17:20 Category: Gorm Severit

[bug #16050] exception when deleting table column

2006-03-11 Thread matt rice
Follow-up Comment #3, bug #16050 (project gnustep): it does correct the issue as reported, but there seems to be multiple ways to get the same exception select a table column, rubberband select the table view, edit->delete select a table column, select something, shift->click to reselect the ta

[bug #16454] GNUStep & XDND > 2

2006-05-03 Thread matt rice
Follow-up Comment #2, bug #16454 (project gnustep): I have actually started on this, and have it working (sometimes), theres an intermittent issue somewhere i haven't figured out that happens occasionaly... and have successfully drag and drop'd with the version of xdnd in gnustep will send

[bug #17000] base/SSL's makefile uses incorrect gnutar usage

2006-07-07 Thread matt rice
Follow-up Comment #5, bug #17000 (project gnustep): i see that in the original bug report its saying 'gnutar' which probably comes from argv[0] yet in the follow up you run tar --version in the original report there are mentions of See 'man star' it seems possible that star is installed and ha

[bug #13916] NSTextField doesn't disable properly

2006-09-20 Thread matt rice
Follow-up Comment #1, bug #13916 (project gnustep): I commited something to fix this partially, it still doesn't draw gray or whatever when disabled but will no longer allow the user to edit it. ___ Reply to this item at:

Re: [bug #13916] NSTextField doesn't disable properly

2006-09-20 Thread Matt Rice
--- matt rice <[EMAIL PROTECTED]> wrote: > > Follow-up Comment #1, bug #13916 (project gnustep): > > I commited something to fix this partially, > it still doesn't draw gray or whatever when disabled > but will no longer allow the user to edit it. forgot to ment

Re: [bug #13916] NSTextField doesn't disable properly

2006-09-21 Thread Matt Rice
--- David Ayers <[EMAIL PROTECTED]> wrote: > Matt Rice schrieb: > > > > --- matt rice <[EMAIL PROTECTED]> wrote: > > > > > >>Follow-up Comment #1, bug #13916 (project > gnustep): > >> > >>I commited something to fix this

[bug #15990] gopen'ing a gorm file twice opens it twice

2006-09-21 Thread matt rice
Update of bug #15990 (project gnustep): Status: In Progress => Fixed Open/Closed:Open => Closed ___ Follow-up Comment #2: Seems to have been

[bug #17820] Cannot make connection from NSTextView to object

2006-09-21 Thread matt rice
URL: Summary: Cannot make connection from NSTextView to object Project: GNUstep Submitted by: ratmice Submitted on: Thursday 09/21/2006 at 21:18 Category: Gorm Severit

[bug #17892] emulate IB private api to get outlets/actions.

2006-10-01 Thread matt rice
URL: Summary: emulate IB private api to get outlets/actions. Project: GNUstep Submitted by: ratmice Submitted on: Sunday 10/01/2006 at 13:54 Category: Gorm Severity: 1

[bug #17923] compositing images in flipped views works intermittently

2006-10-05 Thread matt rice
URL: Summary: compositing images in flipped views works intermittently Project: GNUstep Submitted by: ratmice Submitted on: Friday 10/06/2006 at 05:24 Category: Gui/AppKit

maintaining key window on unhide

2006-10-18 Thread Matt Rice
heres some horrible patches i wouldn't even consider commiting it attempts to work around the issue where after hiding/unhiding the key window is not maintained theres numerous issues, some of which i'm not quite sure how the patch fixes... these are mostly related to the fact that some of the w

Re: maintaining key window on unhide

2006-10-19 Thread Matt Rice
--- Matt Rice <[EMAIL PROTECTED]> wrote: > heres some horrible patches i wouldn't even consider > commiting > this much cleaner diff seems to work... it seems as though generic.desiredOrderedWindow only works if theres one ordered window between event handling though i

Re: maintaining key window on unhide

2006-10-20 Thread Matt Rice
--- Matt Rice <[EMAIL PROTECTED]> wrote: > --- Matt Rice <[EMAIL PROTECTED]> wrote: > > > heres some horrible patches i wouldn't even > consider > > commiting > > > > > this much cleaner diff seems to work... > > it seems as tho

[bug #17820] Cannot make connection from NSTextView to object

2006-10-20 Thread matt rice
Update of bug #17820 (project gnustep): Status:None => Fixed ___ Follow-up Comment #1: this seems to have been fixed.. ___ R

[bug #17820] Cannot make connection from NSTextView to object

2006-10-20 Thread matt rice
Update of bug #17820 (project gnustep): Open/Closed:Open => Closed ___ Reply to this item at: ___ Me

[bug #18073] Cannot make connection from NSOutlineView to object

2006-10-20 Thread matt rice
URL: Summary: Cannot make connection from NSOutlineView to object Project: GNUstep Submitted by: ratmice Submitted on: Friday 10/20/2006 at 17:32 Category: None Severi

Re: maintaining key window on unhide

2006-10-20 Thread Matt Rice
--- Fred Kiefer <[EMAIL PROTECTED]> wrote: > Hi Matt, > > sorry for not commenting earlier, but I am currently > a bit ill and avoid > writing mails when possible. > But as you want to commit, I better put in my ideas > now. > > First it is great that you started to look at this > and your gen

[bug #18073] Cannot make connection from NSOutlineView to object

2006-10-21 Thread matt rice
Follow-up Comment #3, bug #18073 (project gnustep): aha, so this is related to the bug which causes bug #9608, there is a patch there but it didn't work with gorm (which now i recall as being the reason why i hadn't applied it) updated it and had to change GormTableViewEditor a bit, _

Re: maintaining key window on unhide

2006-10-21 Thread Matt Rice
--- Fred Kiefer <[EMAIL PROTECTED]> wrote: > Hi Matt, > > - There are already functions in NSWindow.m, e.g. > NSWindowList(), which > are supposed to return the windows in front to back > order. Perhaps it > would be possible to redirect these function tot he > display server and > implement the

[bug #18073] Cannot make connection from NSOutlineView to object

2006-10-21 Thread matt rice
Additional Item Attachment, bug #18073 (project gnustep): File name: NSTableView-9608-18073.diffSize:3 KB gui part. ___ Reply to this item at:

Re: maintaining key window on unhide

2006-10-21 Thread Matt Rice
--- Matt Rice <[EMAIL PROTECTED]> wrote: > > > --- Fred Kiefer <[EMAIL PROTECTED]> wrote: > > > > - Why are deactivate and unhide processed in > > stacking order? > > i think you mean deactivate and hide, > they just save the hidden window

[bug #9608] can't drag to an empty NSTableView

2006-10-21 Thread matt rice
Update of bug #9608 (project gnustep): Status:None => Fixed Open/Closed:Open => Closed ___ Reply to this item at:

[bug #18078] unable to make a connection from an NSTableColumn to an object

2006-10-21 Thread matt rice
URL: Summary: unable to make a connection from an NSTableColumn to an object Project: GNUstep Submitted by: ratmice Submitted on: Saturday 10/21/2006 at 18:18 Category: Gorm

[bug #15261] in NSTableView selecting a contiguous region with no selected row throws an exception

2006-10-22 Thread matt rice
Update of bug #15261 (project gnustep): Status:None => Fixed Open/Closed:Open => Closed ___ Reply to this item at:

[bug #18117] Removing rows in NSTableView doesn't resize the table.

2006-10-26 Thread matt rice
Update of bug #18117 (project gnustep): Assigned to:None => ratmice ___ Follow-up Comment #1: i'm working on a fix. ___ Reply to th

[bug #18117] Removing rows in NSTableView doesn't resize the table.

2006-10-27 Thread matt rice
Update of bug #18117 (project gnustep): Status:None => Fixed Open/Closed:Open => Closed ___ Follow-up Comment #2: fixed this and ano

[bug #18142] Unable to select table column when table view is grouped

2006-10-29 Thread matt rice
URL: Summary: Unable to select table column when table view is grouped Project: GNUstep Submitted by: ratmice Submitted on: Sunday 10/29/2006 at 08:07 Category: Gorm S

[bug #18143] grouping NSTableView or NSOutlineView causes exception

2006-10-29 Thread matt rice
URL: Summary: grouping NSTableView or NSOutlineView causes exception Project: GNUstep Submitted by: ratmice Submitted on: Sunday 10/29/2006 at 08:09 Category: Gorm Sev

[bug #18143] grouping NSTableView or NSOutlineView in a splitview causes exception

2006-10-29 Thread matt rice
Update of bug #18143 (project gnustep): Summary: grouping NSTableView or NSOutlineView causes exception => grouping NSTableView or NSOutlineView in a splitview causes exception ___ Reply to this item at:

[bug #18144] only able to abort when exception during testing interface

2006-10-29 Thread matt rice
URL: Summary: only able to abort when exception during testing interface Project: GNUstep Submitted by: ratmice Submitted on: Sunday 10/29/2006 at 08:21 Category: Gorm

[bug #16048] odd behaviour when grouping table view with selected column

2006-10-29 Thread matt rice
Follow-up Comment #1, bug #16048 (project gnustep): was thinking a possible fix might be to deselect any table columns when the selection changes from the table view. ___ Reply to this item at: ___

[bug #18144] only able to abort when exception during testing interface

2006-10-30 Thread matt rice
Update of bug #18144 (project gnustep): Status:None => Wont Fix Open/Closed:Open => Declined ___ Follow-up Comment #1: Ok, so after some

[bug #18171] exception when ungrouping

2006-11-01 Thread matt rice
URL: Summary: exception when ungrouping Project: GNUstep Submitted by: ratmice Submitted on: Wednesday 11/01/2006 at 13:33 Category: Gorm Severity: 3 - Normal

[bug #18172] ungrouping grouped objects produces strange behaviour

2006-11-01 Thread matt rice
URL: Summary: ungrouping grouped objects produces strange behaviour Project: GNUstep Submitted by: ratmice Submitted on: Wednesday 11/01/2006 at 13:40 Category: Gorm S

[bug #16589] Resize-handles hard to grab.

2006-11-05 Thread matt rice
Follow-up Comment #2, bug #16589 (project gnustep): its worth noting that you can change the default until it is changed in Gorm, defaults write Gorm KnobWidth 7 defaults write Gorm KnobHeight 7 it will be rounded to the next odd number if its even, the default is 5, and 9 seems too big IMHO.

[bug #17941] Popup button sometimes pops behind panel

2006-11-05 Thread matt rice
Update of bug #17941 (project gnustep): Status:None => Duplicate Open/Closed:Open => Declined ___ Reply to this item at:

[bug #9417] color picker doesn't take focus if called from panel

2006-11-05 Thread matt rice
Update of bug #9417 (project gnustep): Status:None => Fixed Open/Closed:Open => Closed ___ Follow-up Comment #2: regardless of sheet

[bug #14000] Keyboard input control for NSSlider

2006-11-05 Thread matt rice
Update of bug #14000 (project gnustep): Status:None => Fixed Open/Closed:Open => Closed ___ Follow-up Comment #1: should be fixed in

[bug #18208] NSSlider attributes inspector missing some things

2006-11-05 Thread matt rice
URL: Summary: NSSlider attributes inspector missing some things Project: GNUstep Submitted by: ratmice Submitted on: Sunday 11/05/2006 at 19:39 Category: Gorm Severity

[bug #11942] NSTableView behave differently in GNUstep and Cocoa.

2006-11-05 Thread matt rice
Follow-up Comment #2, bug #11942 (project gnustep): recently sent in a patch for this, here is a thorough rundown of how multiple selection works in table views on the mac, and why i believe we shouldn't emulate it http://daringfireball.net/2006/08/highly_selective Heres a snippet in case the u

Re: Thread (usually) not doing what I'd expect

2006-11-07 Thread Matt Rice
--- Graham J Lee <[EMAIL PROTECTED]> wrote: > Hi all, > > The code below demonstrates the problem I'm seeing > with gnustep-base > 1.13.0 on i386/Linux, where NSThread > +detachNewThreadSelector:toTarget:withObject: is not > consistently > executing the method indicated. I'm trying to >

[bug #11942] NSTableView behave differently in GNUstep and Cocoa.

2006-11-08 Thread matt rice
Update of bug #11942 (project gnustep): Status:None => Fixed Open/Closed:Open => Closed ___ Follow-up Comment #3: alright well i com

[task #6084] Document key bindings System

2006-11-09 Thread matt rice
URL: Summary: Document key bindings System Project: GNUstep Submitted by: ratmice Submitted on: Thursday 11/09/2006 at 10:54 Category: AppKit Should Start On: Thursday 11/09/2

[bug #18255] strange issue with field editor/possibly window flushing

2006-11-10 Thread matt rice
URL: Summary: strange issue with field editor/possibly window flushing Project: GNUstep Submitted by: ratmice Submitted on: Saturday 11/11/2006 at 01:36 Category: Gui/AppKit

[bug #18313] Dragging destination draggingSourceOperationMask

2006-11-15 Thread matt rice
URL: Summary: Dragging destination draggingSourceOperationMask Project: GNUstep Submitted by: ratmice Submitted on: Wednesday 11/15/2006 at 23:09 Category: Backend Sev

[bug #18327] unable to drag to NSToolBar when window is registeredForDraggedTypes:

2006-11-18 Thread matt rice
URL: Summary: unable to drag to NSToolBar when window is registeredForDraggedTypes: Project: GNUstep Submitted by: ratmice Submitted on: Sunday 11/19/2006 at 00:58 Category: Gui/AppKi

  1   2   3   >