style: 最后一块板改为最后一块盘
This commit is contained in:
@@ -595,7 +595,7 @@ CLI 常用选项速查:
|
||||
| 位置参数 `inputs` + `--copies N` | 添加多个使用相同份数的输入 |
|
||||
| `--swap-gcode-dir DIR` | 使用自定义换盘 G-code 目录 |
|
||||
| `--no-bed-cooldown` | 不在换料块前插入 `M190` |
|
||||
| `--no-swap-after-final` | 最后一块板后不执行换料块 |
|
||||
| `--no-swap-after-final` | 最后一块盘后不执行换料块 |
|
||||
| `--line-ending lf\|crlf` | 选择生成 G-code 的换行符;默认 `crlf` |
|
||||
| `--zip-level 1-9` | zlib-ng Deflate 压缩级别;默认 `7` |
|
||||
| `--no-preview-label` | 不重写预览图标签/合成图 |
|
||||
|
||||
@@ -150,7 +150,7 @@ def create_parser() -> argparse.ArgumentParser:
|
||||
build.add_argument("--no-eject-wait", action="store_true", help="不插入换盘后等待指令 G4。")
|
||||
build.add_argument("--show-plate-number", action="store_true", help="每板号向 M73 R 值增加 100 小时。")
|
||||
# 行为开关
|
||||
build.add_argument("--no-swap-after-final", action="store_true", help="最后一块板后不执行换盘 G-code。")
|
||||
build.add_argument("--no-swap-after-final", action="store_true", help="最后一块盘后不执行换盘 G-code。")
|
||||
build.add_argument("--metadata-mode", choices=("source", "sum"), default="sum", help="如何写入 slice_info 的 prediction 和 weight。")
|
||||
build.add_argument("--line-ending", choices=("lf", "crlf"), default="crlf", help="生成 G-code 的换行符。")
|
||||
build.add_argument("--zip-level", type=int, choices=range(1, 10), default=DEFAULT_ZIP_COMPRESS_LEVEL, metavar="1-9", help="输出 3MF 的 zlib-ng Deflate 压缩级别。默认值:7。")
|
||||
|
||||
@@ -541,7 +541,7 @@ class MainWindow(QMainWindow):
|
||||
self.show_plate_number_check.setChecked(True)
|
||||
|
||||
# 最后换盘
|
||||
self.swap_final_check = QCheckBox("最后一块板后也执行换盘 G-code")
|
||||
self.swap_final_check = QCheckBox("最后一块盘后也执行换盘 G-code")
|
||||
self.swap_final_check.setChecked(True)
|
||||
|
||||
# G-code 补丁
|
||||
|
||||
Reference in New Issue
Block a user