# update_ui()

현재 열려있는 Fast Ref UI를 최신 데이터로 갱신합니다. UI가 닫혀있으면 아무 일도 하지 않습니다.

### 시그니처
```python
api.update_ui() -> None
```

### 예제
```python
from os_fast_ref.api import FastRefAPI

api = FastRefAPI()

# Refresh UI after API operations
api.set_space_activate(slot=0, on=False)
api.set_space_activate(slot=1, on=False)
api.update_ui()
```
> **참고:** API로 씬을 수정한 뒤 Fast Ref UI가 열려있는 경우, 직접 `update_ui()`를 호출하지 않으면 UI에 변경 사항이 반영되지 않을 수 있습니다.

---