Skip to content

Commit

Permalink
[*]Fix Dialog show
Browse files Browse the repository at this point in the history
  • Loading branch information
Muska-Ami committed Dec 26, 2023
1 parent 2d1dcd2 commit 50e0a44
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion lib/ui/model/ProcessListDialog.dart
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class ProcessListDialogX {
DataColumn(label: Text('隧道ID')),
DataColumn(label: Text('操作')),
],
rows: c_c.widgets,
rows: c_c.widgets.value,
),
],
));
Expand Down
6 changes: 2 additions & 4 deletions windows/packaging/exe/inno_setup.iss
Original file line number Diff line number Diff line change
Expand Up @@ -49,15 +49,13 @@ PrivilegesRequiredOverridesAllowed=dialog

[Tasks]
Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; GroupDescription: "{cm:AdditionalIcons}"; Flags: {% if CREATE_DESKTOP_ICON != true %}unchecked{% else %}checkedonce{% endif %}
Name: "launchAtStartup"; Description: "{cm:AutoStartProgram,{{DISPLAY_NAME}}}"; GroupDescription: "{cm:AdditionalIcons}"; Flags: {% if LAUNCH_AT_STARTUP != true %}unchecked{% else %}checkedonce{% endif %}
[Files]
Source: "{{SOURCE_DIR}}\\*"; DestDir: "{app}"; Flags: ignoreversion recursesubdirs createallsubdirs
; NOTE: Don't use "Flags: ignoreversion" on any shared system files

[Icons]
Name: "{group}\{{INSTALL_DIR_NAME}}}"; Filename: "{app}\{{EXECUTABLE_NAME}}"
Name: "{autoprograms}\\{{DISPLAY_NAME}}"; Filename: "{app}\\{{EXECUTABLE_NAME}}"
Name: "{autodesktop}\\{{DISPLAY_NAME}}"; Filename: "{app}\\{{EXECUTABLE_NAME}}"; Tasks: desktopicon
Name: "{userstartup}\\{{DISPLAY_NAME}}"; Filename: "{app}\\{{EXECUTABLE_NAME}}"; WorkingDir: "{app}"; Tasks: launchAtStartup
Name: "{group}\{{DISPLAY_NAME}}}"; Filename: "{app}\{{EXECUTABLE_NAME}}"
Name: "{autoprograms}\\{{DISPLAY_NAME}}"; Filename: "{app}\\{{EXECUTABLE_NAME}}"
[Run]
Filename: "{app}\\{{EXECUTABLE_NAME}}"; Description: "{cm:LaunchProgram,{{DISPLAY_NAME}}}"; Flags: {% if PRIVILEGES_REQUIRED == 'admin' %}runascurrentuser{% endif %} nowait postinstall skipifsilent

0 comments on commit 50e0a44

Please sign in to comment.