Skip to content

Commit

Permalink
Change reminders button icon (#50)
Browse files Browse the repository at this point in the history
  • Loading branch information
pakerwreah committed Jul 30, 2021
1 parent f09d3ed commit f6915bd
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Calendr.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -1099,7 +1099,7 @@
"$(inherited)",
"@executable_path/../Frameworks",
);
MARKETING_VERSION = 1.3.2;
MARKETING_VERSION = 1.3.3;
PRODUCT_BUNDLE_IDENTIFIER = br.paker.Calendr;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_OBJC_BRIDGING_HEADER = "Calendr/Config/Calendr-Bridging-Header.h";
Expand All @@ -1123,7 +1123,7 @@
"$(inherited)",
"@executable_path/../Frameworks",
);
MARKETING_VERSION = 1.3.2;
MARKETING_VERSION = 1.3.3;
PRODUCT_BUNDLE_IDENTIFIER = br.paker.Calendr;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_OBJC_BRIDGING_HEADER = "Calendr/Config/Calendr-Bridging-Header.h";
Expand Down
2 changes: 1 addition & 1 deletion Calendr/Assets/Icons.swift
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ enum Icons {
static let prev = NSImage(systemName: "chevron.backward")
static let reset = NSImage(systemName: "arrow.clockwise")
static let next = NSImage(systemName: "chevron.forward")
static let reminders = NSImage(systemName: "bell")
static let reminders = NSImage(systemName: "list.bullet")
static let calendar = NSImage(systemName: "calendar")
static let settings = NSImage(systemName: "ellipsis.circle")
static let pinned = NSImage(systemName: "lock")
Expand Down
2 changes: 1 addition & 1 deletion Calendr/Main/MainViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -434,7 +434,7 @@ class MainViewController: NSViewController {
pinBtn.image = Icons.Calendar.unpinned
pinBtn.alternateImage = Icons.Calendar.pinned

remindersBtn.image = Icons.Calendar.reminders.with(size: 13)
remindersBtn.image = Icons.Calendar.reminders.with(scale: .large)
calendarBtn.image = Icons.Calendar.calendar.with(scale: .large)
settingsBtn.image = Icons.Calendar.settings.with(scale: .large)

Expand Down

0 comments on commit f6915bd

Please sign in to comment.