mirror of
https://github.com/gnustep/apps-projectcenter.git
synced 2025-02-19 01:51:09 +00:00
Improvements at Project Inspector
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/projectcenter/trunk@31640 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
102557c7ca
commit
79ae98bbb0
2 changed files with 9 additions and 1 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
2010-11-21 German Arias <german@xelalug.org>
|
||||||
|
* Framework/PCProjectInspector.m: Set "project" and
|
||||||
|
"projectDir" when the panel is loaded. And take the
|
||||||
|
languages to the popup from the PCUserLanguages key
|
||||||
|
instead of NSUserDefaults.
|
||||||
|
|
||||||
2010-11-21 German Arias <german@xelalug.org>
|
2010-11-21 German Arias <german@xelalug.org>
|
||||||
* Framework/PCProject.m:
|
* Framework/PCProject.m:
|
||||||
* Modules/Projects/Application/PCAppProject.m:
|
* Modules/Projects/Application/PCAppProject.m:
|
||||||
|
|
|
@ -109,6 +109,8 @@
|
||||||
// Panel
|
// Panel
|
||||||
[inspectorPanel setFrameAutosaveName:@"ProjectInspector"];
|
[inspectorPanel setFrameAutosaveName:@"ProjectInspector"];
|
||||||
[inspectorPanel setFrameUsingName:@"ProjectInspector"];
|
[inspectorPanel setFrameUsingName:@"ProjectInspector"];
|
||||||
|
project = [projectManager activeProject];
|
||||||
|
projectDict = [project projectDict];
|
||||||
|
|
||||||
// PopUp
|
// PopUp
|
||||||
[inspectorPopup selectItemAtIndex:0];
|
[inspectorPopup selectItemAtIndex:0];
|
||||||
|
@ -533,7 +535,7 @@
|
||||||
|
|
||||||
// Languages
|
// Languages
|
||||||
[projectLanguagePB removeAllItems];
|
[projectLanguagePB removeAllItems];
|
||||||
[projectLanguagePB addItemsWithTitles:[NSUserDefaults userLanguages]];
|
[projectLanguagePB addItemsWithTitles: [projectDict objectForKey: PCUserLanguages]];
|
||||||
|
|
||||||
// Retain view
|
// Retain view
|
||||||
[projectAttributesView retain];
|
[projectAttributesView retain];
|
||||||
|
|
Loading…
Reference in a new issue