Merge pull request #21359 from dragmz/fix-plot-clear-when-stopped
Fix clear button not clearing plot when stopped
This commit is contained in:
commit
548c262399
1 changed files with 3 additions and 1 deletions
|
@ -100,6 +100,8 @@ void EditorProfiler::clear() {
|
|||
updating_frame = false;
|
||||
hover_metric = -1;
|
||||
seeking = false;
|
||||
|
||||
_update_plot();
|
||||
}
|
||||
|
||||
static String _get_percent_txt(float p_value, float p_total) {
|
||||
|
@ -167,7 +169,7 @@ void EditorProfiler::_update_plot() {
|
|||
int w = graph->get_size().width;
|
||||
int h = graph->get_size().height;
|
||||
|
||||
bool reset_texture = false;
|
||||
bool reset_texture = graph_texture.is_null();
|
||||
|
||||
int desired_len = w * h * 4;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue