mirror of
https://github.com/MacPass/MacPass.git
synced 2026-01-30 22:48:26 +00:00
Fixed #289. Pressing ALT now toggles between Save as… and Save a Copy…
This commit is contained in:
@@ -1,8 +1,8 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
<document type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="3.0" toolsVersion="6250" systemVersion="13F34" targetRuntime="MacOSX.Cocoa" propertyAccessControl="none" useAutolayout="YES">
|
<document type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="3.0" toolsVersion="6254" systemVersion="13F34" targetRuntime="MacOSX.Cocoa" propertyAccessControl="none" useAutolayout="YES">
|
||||||
<dependencies>
|
<dependencies>
|
||||||
<deployment identifier="macosx"/>
|
<deployment identifier="macosx"/>
|
||||||
<plugIn identifier="com.apple.InterfaceBuilder.CocoaPlugin" version="6250"/>
|
<plugIn identifier="com.apple.InterfaceBuilder.CocoaPlugin" version="6254"/>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
<objects>
|
<objects>
|
||||||
<customObject id="-2" userLabel="File's Owner" customClass="NSApplication">
|
<customObject id="-2" userLabel="File's Owner" customClass="NSApplication">
|
||||||
@@ -144,6 +144,12 @@
|
|||||||
<action selector="saveDocumentAs:" target="-1" id="1255"/>
|
<action selector="saveDocumentAs:" target="-1" id="1255"/>
|
||||||
</connections>
|
</connections>
|
||||||
</menuItem>
|
</menuItem>
|
||||||
|
<menuItem title="Save a Copy…" alternate="YES" keyEquivalent="s" id="i24-Gn-j9c">
|
||||||
|
<modifierMask key="keyEquivalentModifierMask" option="YES" command="YES"/>
|
||||||
|
<connections>
|
||||||
|
<action selector="saveDocumentTo:" target="-1" id="NHY-sz-zoR"/>
|
||||||
|
</connections>
|
||||||
|
</menuItem>
|
||||||
<menuItem title="Revert to Saved" id="112">
|
<menuItem title="Revert to Saved" id="112">
|
||||||
<modifierMask key="keyEquivalentModifierMask"/>
|
<modifierMask key="keyEquivalentModifierMask"/>
|
||||||
<connections>
|
<connections>
|
||||||
|
|||||||
@@ -143,6 +143,7 @@ NSString *const MPDocumentGroupKey = @"MPDocumentGroupKey
|
|||||||
}
|
}
|
||||||
|
|
||||||
- (void)saveDocumentAs:(id)sender {
|
- (void)saveDocumentAs:(id)sender {
|
||||||
|
/* take a look at NSEditor Protocoll commitEding, as NSDocument supports that */
|
||||||
[[NSNotificationCenter defaultCenter] postNotificationName:MPDocumentWillSaveNotification object:self];
|
[[NSNotificationCenter defaultCenter] postNotificationName:MPDocumentWillSaveNotification object:self];
|
||||||
[super saveDocumentAs:sender];
|
[super saveDocumentAs:sender];
|
||||||
}
|
}
|
||||||
@@ -152,6 +153,11 @@ NSString *const MPDocumentGroupKey = @"MPDocumentGroupKey
|
|||||||
[super saveDocument:sender];
|
[super saveDocument:sender];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
- (void)saveDocumentTo:(id)sender {
|
||||||
|
[[NSNotificationCenter defaultCenter] postNotificationName:MPDocumentWillSaveNotification object:self];
|
||||||
|
[super saveDocumentTo:sender];
|
||||||
|
}
|
||||||
|
|
||||||
- (void)windowControllerDidLoadNib:(NSWindowController *)aController
|
- (void)windowControllerDidLoadNib:(NSWindowController *)aController
|
||||||
{
|
{
|
||||||
[super windowControllerDidLoadNib:aController];
|
[super windowControllerDidLoadNib:aController];
|
||||||
|
|||||||
@@ -132,10 +132,10 @@
|
|||||||
"1181.title" = "Inspector ein/ausblenden";
|
"1181.title" = "Inspector ein/ausblenden";
|
||||||
|
|
||||||
/* Class = "NSMenuItem"; title = "Show Password Creator"; ObjectID = "1200"; */
|
/* Class = "NSMenuItem"; title = "Show Password Creator"; ObjectID = "1200"; */
|
||||||
"1200.title" = "Passwortwerkzeug anzeigen";
|
"1200.title" = "Passwortgenerator anzeigen";
|
||||||
|
|
||||||
/* Class = "NSMenuItem"; title = "Change Master Password…"; ObjectID = "1203"; */
|
/* Class = "NSMenuItem"; title = "Change Master Password…"; ObjectID = "1203"; */
|
||||||
"1203.title" = "Hauptpassword ändern …";
|
"1203.title" = "Datenbankpassword ändern …";
|
||||||
|
|
||||||
/* Class = "NSMenuItem"; title = "Database Settings…"; ObjectID = "1231"; */
|
/* Class = "NSMenuItem"; title = "Database Settings…"; ObjectID = "1231"; */
|
||||||
"1231.title" = "Datenbankeinstellungen …";
|
"1231.title" = "Datenbankeinstellungen …";
|
||||||
|
|||||||
@@ -132,7 +132,7 @@
|
|||||||
"1181.title" = "Toggle Inspector";
|
"1181.title" = "Toggle Inspector";
|
||||||
|
|
||||||
/* Class = "NSMenuItem"; title = "Show Password Creator"; ObjectID = "1200"; */
|
/* Class = "NSMenuItem"; title = "Show Password Creator"; ObjectID = "1200"; */
|
||||||
"1200.title" = "Show Password Creator";
|
"1200.title" = "Show Password Generator";
|
||||||
|
|
||||||
/* Class = "NSMenuItem"; title = "Change Master Password…"; ObjectID = "1203"; */
|
/* Class = "NSMenuItem"; title = "Change Master Password…"; ObjectID = "1203"; */
|
||||||
"1203.title" = "Change Master Password…";
|
"1203.title" = "Change Master Password…";
|
||||||
|
|||||||
Reference in New Issue
Block a user