This is an automated email from the git hooks/post-receive script. g o t t c o d e p u s h e d a c o m m i t t o a n n o t a t e d t a g v 2 . 3 . 1 in repository panel-plugins/xfce4-whiskermenu-plugin.
commit 7acb8e9d08de3cda1562db8356d1abeed45ab1b4 Author: Graeme Gott <[email protected]> Date: Sat Jan 12 08:31:50 2019 -0500 Fix crash when reload is required with garcon 0.6.2. --- panel-plugin/applications-page.cpp | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/panel-plugin/applications-page.cpp b/panel-plugin/applications-page.cpp index 4d6dc4b..c58a7a0 100644 --- a/panel-plugin/applications-page.cpp +++ b/panel-plugin/applications-page.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2013, 2015, 2016, 2017, 2018 Graeme Gott <[email protected]> + * Copyright (C) 2013, 2015, 2016, 2017, 2018, 2019 Graeme Gott <[email protected]> * * This library is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -160,6 +160,7 @@ void ApplicationsPage::invalidate_applications() if (m_load_status == STATUS_LOADED) { m_load_status = STATUS_INVALID; + clear_applications(); } else if (m_load_status == STATUS_LOADING) { @@ -339,7 +340,15 @@ void ApplicationsPage::load_contents() get_window()->set_items(); get_window()->set_loaded(); - m_load_status = (m_load_status == STATUS_LOADING) ? STATUS_LOADED : STATUS_INVALID; + if (m_load_status == STATUS_LOADING) + { + m_load_status = STATUS_LOADED; + } + else + { + m_load_status = STATUS_INVALID; + clear_applications(); + } } //----------------------------------------------------------------------------- -- To stop receiving notification emails like this one, please contact the administrator of this repository. _______________________________________________ Xfce4-commits mailing list [email protected] https://mail.xfce.org/mailman/listinfo/xfce4-commits
