mirror of
https://github.com/trudnai/Steve2.git
synced 2024-12-28 16:31:11 +00:00
24 lines
508 B
Swift
24 lines
508 B
Swift
//
|
|
// DisassView.swift
|
|
// Steve ][
|
|
//
|
|
// Created by Tamas Rudnai on 5/11/21.
|
|
// Copyright © 2021 GameAlloy. All rights reserved.
|
|
//
|
|
|
|
import Cocoa
|
|
|
|
class DisassView: DisplayView {
|
|
|
|
override func mouseDown(with event: NSEvent) {
|
|
// print(#function + "DisassView")
|
|
if let dbgVC = DebuggerViewController.shared {
|
|
dbgVC.mouseDown(with: event)
|
|
dbgVC.DisassBackground.backgroundColor = dbgVC.selectedBackground
|
|
// debugDisplayContraints()
|
|
}
|
|
}
|
|
|
|
}
|
|
|