forked from organicmaps/organicmaps
[tips] duration fix
This commit is contained in:
parent
5f969d18c5
commit
7f0249ae1f
2 changed files with 2 additions and 2 deletions
|
@ -21,7 +21,7 @@ auto constexpr kShowAnyTipPeriod = std::chrono::hours(24) * 3;
|
|||
auto constexpr kShowSameTipPeriod = std::chrono::hours(24) * 30;
|
||||
// Every current trigger for a tips screen can be activated at the start of the application by
|
||||
// default and if the app was inactive more then 12 hours.
|
||||
auto constexpr kShowTipAfterCollapsingPeriod = std::chrono::seconds(12 * 60 * 60);
|
||||
auto constexpr kShowTipAfterCollapsingPeriod = std::chrono::hours(12);
|
||||
// If a user clicks on the action areas (highlighted or blue button)
|
||||
// the appropriate screen will never be shown again.
|
||||
size_t constexpr kActionClicksCountToDisable = 1;
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
class TipsApi
|
||||
{
|
||||
public:
|
||||
using Duration = std::chrono::duration<uint64_t>;
|
||||
using Duration = std::chrono::hours;
|
||||
using Condition = std::function<bool(eye::Info const & info)>;
|
||||
using Conditions = std::array<Condition, static_cast<size_t>(eye::Tip::Type::Count)>;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue