diff options
| author | Brian Potchik <brian@vector35.com> | 2025-01-13 17:22:37 -0500 |
|---|---|---|
| committer | Brian Potchik <brian@vector35.com> | 2025-01-13 17:22:37 -0500 |
| commit | 17158e9942a73327f176ef642a1cafcaf8cb7b03 (patch) | |
| tree | df69092649c16e55622c85397d8e4ebacb3ec385 | |
| parent | 768bf0dd364239786b9594f60ced85b331ebda5f (diff) | |
Add 'ui.log.wordWrap' setting with a default of disabled.
| -rw-r--r-- | ui/logview.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ui/logview.h b/ui/logview.h index bdf596ad..8cbda7ec 100644 --- a/ui/logview.h +++ b/ui/logview.h @@ -254,9 +254,12 @@ class BINARYNINJAUIAPI LogView : public SidebarWidget, public FilterTarget static void setLogLevel(BNLogLevel level); static void setLogSize(size_t maxSize); + static void setWordWrap(bool wrap); static bool IsHexString(const QString& str, std::pair<int, int> offsetLen); static bool StartsWith0x(const QString& str, std::pair<int, int> offsetLen); + void notifyWordWrapChanged(); + void notifyFontChanged() override; void notifyThemeChanged() override; void notifyViewChanged(ViewFrame* frame) override; |
