replicate the remove-all-trailing whitespace commit(s) in master

This commit is contained in:
Paul Davis 2015-10-26 14:35:06 -04:00
parent 589f2a1ab8
commit bc487bb4b0
235 changed files with 5833 additions and 5840 deletions

View file

@ -2085,21 +2085,17 @@ Mixer_UI::update_title ()
n = "*" + n;
}
if (own_window()) {
WindowTitle title (n);
title += S_("Window|Mixer");
title += Glib::get_application_name ();
own_window()->set_title (title.get_string());
}
} else {
if (own_window()) {
WindowTitle title (S_("Window|Mixer"));
title += Glib::get_application_name ();
own_window()->set_title (title.get_string());
}
}
}
MixerStrip*
@ -2172,11 +2168,8 @@ Mixer_UI::maximise_mixer_space ()
return;
}
Gtk::Window* win = (Gtk::Window*) get_toplevel();
if (win) {
win->fullscreen ();
_maximised = true;
if (_maximised) {
return;
}
_window->fullscreen ();
@ -2190,11 +2183,8 @@ Mixer_UI::restore_mixer_space ()
return;
}
Gtk::Window* win = (Gtk::Window*) get_toplevel();
if (win) {
win->unfullscreen();
_maximised = false;
if (!_maximised) {
return;
}
own_window()->unfullscreen();

View file

@ -361,7 +361,10 @@ class Mixer_UI : public Gtkmm2ext::Tabbable, public PBD::ScopedConnectionList, p
=======
void create_own_window ();
<<<<<<< HEAD
>>>>>>> the basics of tabbed
=======
>>>>>>> replicate the remove-all-trailing whitespace commit(s) in master
/// true if we are in fullscreen mode
bool _maximised;