Skip to content

Commit

Permalink
fix voice window box packing
Browse files Browse the repository at this point in the history
  • Loading branch information
ouwou committed Mar 12, 2024
1 parent 43f87ae commit b3a8356
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/windows/voicewindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -253,13 +253,13 @@ VoiceWindow::VoiceWindow(Snowflake channel_id)
m_controls.add(m_deafen);
m_controls.add(m_noise_suppression);
m_controls.add(m_mix_mono);
m_main.pack_start(m_menu_bar);
m_main.pack_start(m_controls);
m_main.pack_start(m_vad_value);
m_main.pack_start(*Gtk::make_managed<Gtk::Label>("Input Settings"));
m_main.pack_start(*sliders_container);
m_main.pack_start(m_menu_bar, false, true);
m_main.pack_start(m_controls, false, true);
m_main.pack_start(m_vad_value, false, true);
m_main.pack_start(*Gtk::make_managed<Gtk::Label>("Input Settings"), false, true);
m_main.pack_start(*sliders_container, false, true);
m_main.pack_start(m_scroll);
m_main.pack_start(*combos_container, Gtk::PACK_EXPAND_WIDGET, 2);
m_main.pack_start(*combos_container, false, true, 2);
add(m_main);
show_all_children();

Expand Down

0 comments on commit b3a8356

Please sign in to comment.