mirror of
https://github.com/danbee/persephone
synced 2025-03-04 08:39:11 +00:00
* Add cover art for each track * Stack song title and artist * Add song duration * Redesign the dragged image view to match
18 lines
490 B
Swift
18 lines
490 B
Swift
//
|
|
// NSSize.swift
|
|
// Persephone
|
|
//
|
|
// Created by Daniel Barber on 1/20/20.
|
|
// Copyright © 2020 Dan Barber. All rights reserved.
|
|
//
|
|
|
|
import AppKit
|
|
|
|
extension NSSize {
|
|
static let queueSongCoverSize = NSSize(width: 32, height: 32)
|
|
static let albumListCoverSize = NSSize(width: 180, height: 180)
|
|
static let albumDetailCoverSize = NSSize(width: 500, height: 500)
|
|
static let currentlyPlayingCoverSize = albumDetailCoverSize
|
|
static let notificationCoverSize = albumListCoverSize
|
|
}
|