Removed Menu

This commit is contained in:
2022-05-15 21:14:30 +02:00
parent 1e2935d4f5
commit efd60bcbe1
3 changed files with 4 additions and 2 deletions

View File

@@ -2,7 +2,7 @@
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES! ; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
#define MyAppName "StickExporterTX" #define MyAppName "StickExporterTX"
#define MyAppVersion "0.6" #define MyAppVersion "0.6.1"
#define MyAppPublisher "Lino Schmidt" #define MyAppPublisher "Lino Schmidt"
#define MyAppURL "https://stickexportertx.lino3d.de" #define MyAppURL "https://stickexportertx.lino3d.de"
#define MyAppExeName "stickexportertx.exe" #define MyAppExeName "stickexportertx.exe"

View File

@@ -1,7 +1,7 @@
{ {
"name": "stickexportertx", "name": "stickexportertx",
"productName": "StickExporterTX", "productName": "StickExporterTX",
"version": "0.6", "version": "0.6.1",
"description": "A 3D Stick Exporter for EdgeTX/OpenTX Logs.", "description": "A 3D Stick Exporter for EdgeTX/OpenTX Logs.",
"main": "src/index.js", "main": "src/index.js",
"scripts": { "scripts": {

View File

@@ -19,6 +19,8 @@ const createWindow = () => {
} }
}); });
mainWindow.setMenu(null);
require('@electron/remote/main').initialize(); require('@electron/remote/main').initialize();
require("@electron/remote/main").enable(mainWindow.webContents); require("@electron/remote/main").enable(mainWindow.webContents);