summaryrefslogtreecommitdiff
path: root/Userland/DevTools/Profiler/ProfileModel.h
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/DevTools/Profiler/ProfileModel.h')
-rw-r--r--Userland/DevTools/Profiler/ProfileModel.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/DevTools/Profiler/ProfileModel.h b/Userland/DevTools/Profiler/ProfileModel.h
index 5678a077ca..84c685940e 100644
--- a/Userland/DevTools/Profiler/ProfileModel.h
+++ b/Userland/DevTools/Profiler/ProfileModel.h
@@ -37,6 +37,7 @@ public:
virtual GUI::ModelIndex parent_index(const GUI::ModelIndex&) const override;
virtual void update() override;
virtual int tree_column() const override { return Column::StackFrame; }
+ virtual bool is_column_sortable(int) const override { return false; }
private:
explicit ProfileModel(Profile&);