diff options
author | Lukáš Tinkl <lukas.tinkl@canonical.com> | 2016-06-16 18:55:27 +0200 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2021-08-29 14:37:39 +0200 |
commit | 63e38ce5a62731310013918a3ef16b1c81a68dd0 (patch) | |
tree | 442f78745e475561f4fd042126d3fdcdfa77d909 /tests/test-menus.cpp | |
parent | 7946051c0be6255ed755b9c7996566720db5889c (diff) | |
download | ayatana-indicator-datetime-63e38ce5a62731310013918a3ef16b1c81a68dd0.tar.gz ayatana-indicator-datetime-63e38ce5a62731310013918a3ef16b1c81a68dd0.tar.bz2 ayatana-indicator-datetime-63e38ce5a62731310013918a3ef16b1c81a68dd0.zip |
re-enable the calendar component in phone mode too
Diffstat (limited to 'tests/test-menus.cpp')
-rw-r--r-- | tests/test-menus.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test-menus.cpp b/tests/test-menus.cpp index 73592d0..8650201 100644 --- a/tests/test-menus.cpp +++ b/tests/test-menus.cpp @@ -102,7 +102,7 @@ protected: else expected_action = nullptr; - const auto calendar_expected = ((profile == Menu::Desktop) || (profile == Menu::DesktopGreeter)) + const auto calendar_expected = ((profile == Menu::Desktop) || (profile == Menu::DesktopGreeter) || (profile == Menu::Phone)) && (m_state->settings->show_calendar.get()); // get the calendar section @@ -420,7 +420,7 @@ protected: void InspectLocations(GMenuModel* menu_model, Menu::Profile profile) { - const bool locations_expected = profile == Menu::Desktop; + const bool locations_expected = (profile == Menu::Desktop) || (profile == Menu::Phone); // when there aren't any locations, confirm the menu is empty const std::vector<Location> empty; |