tag mappin 소스 추가.
This commit is contained in:
@@ -8,18 +8,14 @@ Version: 1.0.0
|
||||
"""
|
||||
|
||||
import flet as ft
|
||||
import asyncio
|
||||
import logging
|
||||
import os
|
||||
from datetime import datetime
|
||||
from typing import List, Optional
|
||||
import time
|
||||
|
||||
# 프로젝트 모듈 임포트
|
||||
from config import Config
|
||||
from multi_file_processor import MultiFileProcessor, BatchProcessingConfig, generate_default_csv_filename
|
||||
from ui_components import MultiFileUIComponents
|
||||
from utils import DateTimeUtils
|
||||
|
||||
# 로깅 설정
|
||||
logging.basicConfig(level=logging.INFO)
|
||||
@@ -297,10 +293,10 @@ class MultiFileApp:
|
||||
# 상위 Container에서 텍스트 찾아서 업데이트
|
||||
try:
|
||||
settings_container = e.control.parent.parent # Column -> Container
|
||||
text_control = settings_container.content.controls[2].controls[1].controls[0] # 해당 텍스트
|
||||
text_control = settings_container.controls[0]
|
||||
text_control.value = f"동시 처리 수: {value}개"
|
||||
self.page.update()
|
||||
except:
|
||||
except e: # noqa: E722
|
||||
logger.warning("슬라이더 레이블 업데이트 실패")
|
||||
|
||||
def on_browse_csv_path_click(self, e):
|
||||
|
||||
Reference in New Issue
Block a user