|
@@ -787,8 +787,6 @@ class KMLeftSideViewController: KMSideViewController {
|
|
|
|
|
|
|
|
|
@IBAction func thumbnailSizeScaling(_ sender: NSButton) {
|
|
|
- let sud = UserDefaults.standard
|
|
|
-
|
|
|
let tag = sender.tag
|
|
|
if (tag == 0 || tag == 1) {
|
|
|
var scaling = KMDataManager.ud_float(forKey: Self.Key.thumbSizeScaling)
|
|
@@ -797,9 +795,9 @@ class KMLeftSideViewController: KMSideViewController {
|
|
|
}
|
|
|
if (tag == 0) { // Zoom In
|
|
|
scaling += self.scalingIncrement
|
|
|
- if scaling >= 2.2 {
|
|
|
- return
|
|
|
- }
|
|
|
+// if scaling >= 2.2 {
|
|
|
+// return
|
|
|
+// }
|
|
|
} else if (tag == 1) { // Zoom Out
|
|
|
scaling -= self.scalingIncrement
|
|
|
if scaling <= 0.4 {
|