diff options
Diffstat (limited to 'components/script/script_thread.rs')
-rw-r--r-- | components/script/script_thread.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/script_thread.rs b/components/script/script_thread.rs index 1b28c337d56..8b3ba539809 100644 --- a/components/script/script_thread.rs +++ b/components/script/script_thread.rs @@ -773,7 +773,7 @@ impl ScriptThreadFactory for ScriptThread { let (sender, receiver) = unbounded(); let layout_chan = sender.clone(); thread::Builder::new() - .name(format!("ScriptThread {:?}", state.id)) + .name(format!("Script{}", state.id)) .spawn(move || { thread_state::initialize(ThreadState::SCRIPT); PipelineNamespace::install(state.pipeline_namespace_id); |