mirror of
https://github.com/ish-app/ish.git
synced 2026-01-25 14:06:40 +00:00
xterm.js can't support selection sanely. I originally thought hterm was kind of abandoned, but it turns out thousands of Googlers rely on it. So now I can live at head, and have a place to send patches.
19 lines
253 B
Objective-C
19 lines
253 B
Objective-C
//
|
|
// ScrollbarView.h
|
|
// iSH
|
|
//
|
|
// Created by Theodore Dubois on 9/2/19.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface ScrollbarView : UIScrollView
|
|
|
|
@property (nonatomic, nullable) UIView *contentView;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|