mirror of
https://github.com/gnustep/apps-projectcenter.git
synced 2025-02-11 08:21:00 +00:00
* Set all textfields attributes to 'scrollable'.
* Framework/PCProjectBuilderOptions.m: Set first reponder after panel is ordereder (call to makeFirstResponder: in awakeFromNib prevents textfield from draw its' border. NUstep bug?). git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/projectcenter/trunk@27955 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
9724c929cb
commit
e8bc76c5b3
13 changed files with 9 additions and 1 deletions
|
@ -1,3 +1,11 @@
|
|||
2009-02-23 Sergii Stoian <stoyan255@gmail.com>
|
||||
|
||||
* Set all textfields attributes to 'scrollable'.
|
||||
* Framework/PCProjectBuilderOptions.m: Set first reponder
|
||||
after panel is ordereder (call to makeFirstResponder: in
|
||||
awakeFromNib prevents textfield from draw its' border.
|
||||
GNUstep bug?).
|
||||
|
||||
2009-02-22 Sergii Stoian <stoyan255@gmail.com>
|
||||
|
||||
* Framework/PCSaveModifiedFiles.m: Change to more generic
|
||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -75,7 +75,6 @@
|
|||
// Setup build arguments field
|
||||
args = [[project projectDict] objectForKey:PCBuilderArguments];
|
||||
[buildArgsField setStringValue:[args componentsJoinedByString:@" "]];
|
||||
[optionsPanel makeFirstResponder:buildArgsField];
|
||||
|
||||
// Setup option buttons
|
||||
[verboseButton setRefusesFirstResponder:YES];
|
||||
|
@ -119,6 +118,7 @@
|
|||
[optionsPanel setFrame:opRect display:NO];
|
||||
|
||||
[optionsPanel makeKeyAndOrderFront:nil];
|
||||
[optionsPanel makeFirstResponder:buildArgsField];
|
||||
}
|
||||
|
||||
- (NSString *)buildTarget
|
||||
|
|
Loading…
Reference in a new issue