Skip to content

Commit

Permalink
Avoid quick flicker of the window before minimizing it.
Browse files Browse the repository at this point in the history
Update documentation, about and locales.
  • Loading branch information
Humdinger committed Aug 1, 2015
1 parent 0d8616b commit 4cfd6f6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ClipView.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ ClipView::AdjustColors()
fade = settings->GetFade();
step = settings->GetFadeStep();
delay = settings->GetFadeDelay() * kMinuteUnits;
maxlevel = 1.0 + 0.025 * settings->GetFadeMaxLevel(); // default: 1.2
maxlevel = 1.0 + 0.025 * settings->GetFadeMaxLevel();
pause = settings->GetFadePause();
settings->Unlock();
}
Expand Down
2 changes: 1 addition & 1 deletion SettingsWindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ SettingsWindow::_BuildLayout()
fFadeBox = new BCheckBox("fading", B_TRANSLATE(
"Fade history entries over time"), new BMessage(FADE));
fDelaySlider = new BSlider(BRect(), "delay", B_TRANSLATE("Delay"),
new BMessage(DELAY), 1, 12); // 12 units á 5 minutes
new BMessage(DELAY), 1, 12); // 12 units á 10 minutes
fDelaySlider->SetHashMarks(B_HASH_MARKS_BOTTOM);
fDelaySlider->SetHashMarkCount(12);
fDelaySlider->SetKeyIncrementValue(1);
Expand Down

0 comments on commit 4cfd6f6

Please sign in to comment.