디버그 모드 설정 변경: 디버그 모드를 True에서 False로 수정하여 문제 해결용 기능 비활성화

This commit is contained in:
Envy_PC 2025-04-13 21:54:43 +09:00
parent 189ea70f3a
commit 0012c66b49
2 changed files with 11 additions and 1 deletions

10
flet_app_config.py Normal file
View File

@ -0,0 +1,10 @@
"""
고장코드 검색기 설정 파일
안드로이드 빌드 배포 설정을 정의합니다.
"""
APP_NAME = "고장코드검색기"
APP_PACKAGE_NAME = "com.shinpyung.fault_finder"
APP_VERSION = "1.0.0"
APP_BUILD = "1"
APP_ICON = "assets/app_icon.png"

View File

@ -19,7 +19,7 @@ class FaultFinderUI:
self.current_view = "fault_code" # 현재 보기 모드 (fault_code, abbreviation, drawing, signal)
# 디버그 모드 설정 (문제 해결용)
self.debug = True
self.debug = False
# 테마 설정 (기본값: 라이트 모드)
self.theme = "light"