mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-07-24 04:36:10 +03:00
apprt/gtk: rename the other underscore actions to match naming rules
This commit is contained in:
@ -382,8 +382,8 @@ fn updateConfigErrors(self: *App) !void {
|
|||||||
|
|
||||||
fn syncActionAccelerators(self: *App) !void {
|
fn syncActionAccelerators(self: *App) !void {
|
||||||
try self.syncActionAccelerator("app.quit", .{ .quit = {} });
|
try self.syncActionAccelerator("app.quit", .{ .quit = {} });
|
||||||
try self.syncActionAccelerator("app.open_config", .{ .open_config = {} });
|
try self.syncActionAccelerator("app.open-config", .{ .open_config = {} });
|
||||||
try self.syncActionAccelerator("app.reload_config", .{ .reload_config = {} });
|
try self.syncActionAccelerator("app.reload-config", .{ .reload_config = {} });
|
||||||
try self.syncActionAccelerator("win.toggle_inspector", .{ .inspector = .toggle });
|
try self.syncActionAccelerator("win.toggle_inspector", .{ .inspector = .toggle });
|
||||||
try self.syncActionAccelerator("win.close", .{ .close_surface = {} });
|
try self.syncActionAccelerator("win.close", .{ .close_surface = {} });
|
||||||
try self.syncActionAccelerator("win.new_window", .{ .new_window = {} });
|
try self.syncActionAccelerator("win.new_window", .{ .new_window = {} });
|
||||||
@ -870,8 +870,8 @@ fn initActions(self: *App) void {
|
|||||||
// https://docs.gtk.org/gio/type_func.Action.name_is_valid.html
|
// https://docs.gtk.org/gio/type_func.Action.name_is_valid.html
|
||||||
const actions = .{
|
const actions = .{
|
||||||
.{ "quit", >kActionQuit, null },
|
.{ "quit", >kActionQuit, null },
|
||||||
.{ "open_config", >kActionOpenConfig, null },
|
.{ "open-config", >kActionOpenConfig, null },
|
||||||
.{ "reload_config", >kActionReloadConfig, null },
|
.{ "reload-config", >kActionReloadConfig, null },
|
||||||
.{ "present-surface", >kActionPresentSurface, c.G_VARIANT_TYPE("t") },
|
.{ "present-surface", >kActionPresentSurface, c.G_VARIANT_TYPE("t") },
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -912,8 +912,8 @@ fn initMenu(self: *App) void {
|
|||||||
defer c.g_object_unref(section);
|
defer c.g_object_unref(section);
|
||||||
c.g_menu_append_section(menu, null, @ptrCast(@alignCast(section)));
|
c.g_menu_append_section(menu, null, @ptrCast(@alignCast(section)));
|
||||||
c.g_menu_append(section, "Terminal Inspector", "win.toggle_inspector");
|
c.g_menu_append(section, "Terminal Inspector", "win.toggle_inspector");
|
||||||
c.g_menu_append(section, "Open Configuration", "app.open_config");
|
c.g_menu_append(section, "Open Configuration", "app.open-config");
|
||||||
c.g_menu_append(section, "Reload Configuration", "app.reload_config");
|
c.g_menu_append(section, "Reload Configuration", "app.reload-config");
|
||||||
c.g_menu_append(section, "About Ghostty", "win.about");
|
c.g_menu_append(section, "About Ghostty", "win.about");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user