Skip to content

Commit

Permalink
Clarify disabling as being specifically for tiling (#1742)
Browse files Browse the repository at this point in the history
  • Loading branch information
ianyh authored Feb 2, 2025
1 parent daf308a commit bb2aa7a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Amethyst/AppDelegate.swift
Original file line number Diff line number Diff line change
Expand Up @@ -181,10 +181,10 @@ extension AppDelegate: UserConfigurationDelegate {
var statusItemImage: NSImage?
if UserConfiguration.shared.tilingEnabled == true {
statusItemImage = NSImage(named: "icon-statusitem")
toggleGlobalTilingMenuItem?.title = "Disable"
toggleGlobalTilingMenuItem?.title = "Disable Tiling"
} else {
statusItemImage = NSImage(named: "icon-statusitem-disabled")
toggleGlobalTilingMenuItem?.title = "Enable"
toggleGlobalTilingMenuItem?.title = "Enable Tiling"
}
statusItemImage?.isTemplate = true
statusItem?.image = statusItemImage
Expand Down
8 changes: 4 additions & 4 deletions Amethyst/Base.lproj/MainMenu.xib
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<document type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="3.0" toolsVersion="22154" targetRuntime="MacOSX.Cocoa" propertyAccessControl="none" useAutolayout="YES">
<document type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="3.0" toolsVersion="23504" targetRuntime="MacOSX.Cocoa" propertyAccessControl="none" useAutolayout="YES">
<dependencies>
<deployment identifier="macosx"/>
<plugIn identifier="com.apple.InterfaceBuilder.CocoaPlugin" version="22154"/>
<plugIn identifier="com.apple.InterfaceBuilder.CocoaPlugin" version="23504"/>
<capability name="Image references" minToolsVersion="12.0"/>
<capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
</dependencies>
Expand All @@ -20,7 +20,7 @@
<modifierMask key="keyEquivalentModifierMask"/>
</menuItem>
<menuItem isSeparatorItem="YES" id="uP9-ch-b7n"/>
<menuItem title="Disable" id="rjJ-w4-5Ht">
<menuItem title="Disable Tiling" id="rjJ-w4-5Ht">
<modifierMask key="keyEquivalentModifierMask"/>
<connections>
<action selector="toggleGlobalTiling:" target="494" id="3aM-9U-hWx"/>
Expand Down Expand Up @@ -78,7 +78,7 @@
<rect key="frame" x="0.0" y="0.0" width="480" height="260"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
</view>
<toolbar key="toolbar" implicitIdentifier="2383369F-98A6-4420-8EFE-319DB9588C53" autosavesConfiguration="NO" allowsUserCustomization="NO" displayMode="iconAndLabel" sizeMode="regular" id="5oI-m4-akz">
<toolbar key="toolbar" implicitIdentifier="2383369F-98A6-4420-8EFE-319DB9588C53" autosavesConfiguration="NO" allowsUserCustomization="NO" showsBaselineSeparator="NO" displayMode="iconAndLabel" sizeMode="regular" id="5oI-m4-akz">
<allowedToolbarItems>
<toolbarItem implicitItemIdentifier="D4FDE95C-2F3E-4C93-8777-9FBAD1EDB613" explicitItemIdentifier="general" label="General" paletteLabel="General" selectable="YES" id="WV2-G9-AL4">
<imageReference key="image" image="text.and.command.macwindow" catalog="system" symbolScale="large"/>
Expand Down

0 comments on commit bb2aa7a

Please sign in to comment.