mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-02 22:55:23 +00:00
There's no longer a cursor in each process timeline, instead the parent widget keeps track of it (along with the selection) and it all moves in sync.
23 lines
333 B
C++
23 lines
333 B
C++
/*
|
|
* Copyright (c) 2021, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include "TimelineView.h"
|
|
#include <LibGUI/BoxLayout.h>
|
|
|
|
namespace Profiler {
|
|
|
|
TimelineView::TimelineView()
|
|
{
|
|
set_layout<GUI::VerticalBoxLayout>();
|
|
set_shrink_to_fit(true);
|
|
}
|
|
|
|
TimelineView::~TimelineView()
|
|
{
|
|
}
|
|
|
|
}
|