From b0a52f2bed6df69847cd20ad969e8948be2e6e0b Mon Sep 17 00:00:00 2001 From: JE-Chen45 Date: Sat, 12 Aug 2023 17:12:24 +0800 Subject: [PATCH] Add comment on doc --- docs/source/docs/Eng/how_to_extend_ui.rst | 4 ++-- docs/source/docs/Zh/how_to_extend_ui.rst | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/source/docs/Eng/how_to_extend_ui.rst b/docs/source/docs/Eng/how_to_extend_ui.rst index 5e86b26..c3d96bf 100644 --- a/docs/source/docs/Eng/how_to_extend_ui.rst +++ b/docs/source/docs/Eng/how_to_extend_ui.rst @@ -9,7 +9,7 @@ How to extend FrontEngine UI from frontengine import start_front_engine, FrontEngine_EXTEND_TAB - + # You can use you own QWidget class TestUI(QWidget): def __init__(self): @@ -31,4 +31,4 @@ How to extend FrontEngine UI FrontEngine_EXTEND_TAB.update({"test": TestUI}) - start_front_engine(debug=True) + start_front_engine() diff --git a/docs/source/docs/Zh/how_to_extend_ui.rst b/docs/source/docs/Zh/how_to_extend_ui.rst index 2859688..09d9633 100644 --- a/docs/source/docs/Zh/how_to_extend_ui.rst +++ b/docs/source/docs/Zh/how_to_extend_ui.rst @@ -9,7 +9,7 @@ from frontengine import start_front_engine, FrontEngine_EXTEND_TAB - + # You can use you own QWidget class TestUI(QWidget): def __init__(self): @@ -31,4 +31,4 @@ FrontEngine_EXTEND_TAB.update({"test": TestUI}) - start_front_engine(debug=True) + start_front_engine()