Get tool confirmation setting (legacy compatibility).
(self)
| 252 | self.save_preferences() |
| 253 | |
| 254 | def get_confirm_tools(self) -> bool: |
| 255 | """Get tool confirmation setting (legacy compatibility).""" |
| 256 | return self.preferences.ui.tool_confirmation.mode != ConfirmationMode.NEVER |
| 257 | |
| 258 | def set_confirm_tools(self, confirm: bool) -> None: |
| 259 | """Set tool confirmation mode (legacy compatibility).""" |
no outgoing calls