Fixed App ID inconsistencies

This commit is contained in:
2025-11-05 13:16:01 +01:00
parent 9c840bc52a
commit a641677964
2 changed files with 2 additions and 2 deletions

View File

@@ -24,7 +24,7 @@ public class AddShortcutWindow
public AddShortcutWindow(BookmarkCollection shortcuts)
{
this.shortcuts = shortcuts;
var builder = new Gtk.Builder("Keychain.UI.AddShortcutWindow.AddShortcutWindow.xml");
var builder = new Gtk.Builder("Keys.UI.AddShortcutWindow.AddShortcutWindow.xml");
Dialog = builder.GetObject(dialogId) as Dialog;
if (Dialog == null)

View File

@@ -50,7 +50,7 @@ public partial class MainWindow
private void BindUIElements()
{
var builder = new Gtk.Builder("Keychain.UI.MainWindow.MainWindow.xml");
var builder = new Gtk.Builder("Keys.UI.MainWindow.MainWindow.xml");
Window = builder.GetObject(windowId) as Window;
if (Window == null)
{