Skip to content

Commit

Permalink
fix: increase app icon size in about tab
Browse files Browse the repository at this point in the history
  • Loading branch information
lwouis committed Aug 5, 2020
1 parent b323e46 commit 94a0cd8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ui/preferences-window/tabs/AboutTab.swift
Expand Up @@ -7,7 +7,7 @@ class AboutTab: NSViewController, PreferencePane {
let toolbarItemIcon = NSImage(named: "about")!

override func loadView() {
let appIcon = NSImageView(image: NSImage(named: "app-icon")!.resizedCopy(150, 150))
let appIcon = NSImageView(image: NSImage(named: "app-icon")!.resizedCopy(256, 256))
appIcon.imageScaling = .scaleNone
let appText = StackView([
BoldLabel(App.name),
Expand Down

0 comments on commit 94a0cd8

Please sign in to comment.