bump urlbar font size, and increase page scrolling speed

This commit is contained in:
anthony 2020-12-04 19:08:13 +00:00
parent 274ab9d670
commit 08e0d3b003
4 changed files with 4 additions and 1 deletions

View File

@ -9,6 +9,7 @@ struct browser_window;
id urlBar;
struct browser_window *browser;
id plotView;
id scrollView;
}
-(id)initWithBrowser: (struct browser_window*)aBrowser;

View File

@ -17,6 +17,7 @@
-(void)awakeFromNib {
[plotView setBrowser: browser];
[scrollView setLineScroll: 25];
NSLog(@"Browser window loaded");
}

View File

@ -10,7 +10,8 @@
backButton,
forwardButton,
urlBar,
plotView
plotView,
scrollView
);
Super = NSWindowController;
};