mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer-rs.git
synced 2024-11-25 11:01:10 +00:00
tutorials/basic-tutorial-13: Make sure that acquiring the main context actually succeeds
This commit is contained in:
parent
6b8bfd2701
commit
b1088a6d11
1 changed files with 1 additions and 1 deletions
|
@ -119,7 +119,7 @@ USAGE: Choose one of the following options, then press enter:
|
||||||
let main_context = glib::MainContext::default();
|
let main_context = glib::MainContext::default();
|
||||||
// ... and make it the main context by default so that we can then have a channel to send the
|
// ... and make it the main context by default so that we can then have a channel to send the
|
||||||
// commands we received from the terminal.
|
// commands we received from the terminal.
|
||||||
let _guard = main_context.acquire();
|
let _guard = main_context.acquire().unwrap();
|
||||||
|
|
||||||
// Build the channel to get the terminal inputs from a different thread.
|
// Build the channel to get the terminal inputs from a different thread.
|
||||||
let (ready_tx, ready_rx) = glib::MainContext::channel(glib::PRIORITY_DEFAULT);
|
let (ready_tx, ready_rx) = glib::MainContext::channel(glib::PRIORITY_DEFAULT);
|
||||||
|
|
Loading…
Reference in a new issue