Add application menu item for checking for updates

This commit is contained in:
Max Brunsfeld 2022-04-04 18:05:26 -07:00
parent 9c469f2fdb
commit fb2caf3c58
3 changed files with 13 additions and 0 deletions

View file

@ -31,6 +31,7 @@ action!(About);
action!(Quit);
action!(OpenSettings);
action!(AdjustBufferFontSize, f32);
action!(CheckForUpdates);
const MIN_FONT_SIZE: f32 = 6.0;
@ -43,6 +44,7 @@ lazy_static! {
pub fn init(app_state: &Arc<AppState>, cx: &mut gpui::MutableAppContext) {
cx.add_global_action(quit);
cx.add_global_action(|_: &CheckForUpdates, cx| auto_update::check(cx));
cx.add_global_action({
move |action: &AdjustBufferFontSize, cx| {
cx.update_global::<Settings, _, _>(|settings, cx| {