-
-
Notifications
You must be signed in to change notification settings - Fork 33
Open
Description
Sometimes scrolling within the code window and output window does not work properly.
This is a screenrecording of the issue in the output window, couldn't replicate again the code window issue.
Using Chrome Version 81.0.4044.129 (Official Build) (64-bit) on MacOS.
Code wrote in the Code Window to reproduce the issue in the Output Window:
import Foundation
class Adapter: NSObject {
static var lat: Int = {
// some calculations
print("lat")
return 1
}()
}
print(Adapter.lat)
print(Adapter.lat)
class Adapter2: NSObject {
static var width: Int {
// some calculations
print("width")
return 1
}
}
print(Adapter2.width)
print(Adapter2.width)
Metadata
Metadata
Assignees
Labels
No labels
