diff options
| author | André Nusser <andre.nusser@googlemail.com> | 2019-07-18 23:42:37 +0200 | 
|---|---|---|
| committer | André Nusser <andre.nusser@googlemail.com> | 2019-07-18 23:44:55 +0200 | 
| commit | 8877cd2ecd225ddb35a7c21589ad87fdbe0f6dc5 (patch) | |
| tree | aed063e436d8f77656dfe44daba86629f72ba7a8 /plugingui | |
| parent | 63ca90b25a1c14e8d5082ab7347370e934718b58 (diff) | |
Fix issues of sample selection choosing very far samples.
It can still do so, but it is much more unlikely and generally more
stable now.
Diffstat (limited to 'plugingui')
| -rw-r--r-- | plugingui/sampleselectionframecontent.h | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/plugingui/sampleselectionframecontent.h b/plugingui/sampleselectionframecontent.h index ebb1a02..67da213 100644 --- a/plugingui/sampleselectionframecontent.h +++ b/plugingui/sampleselectionframecontent.h @@ -46,9 +46,9 @@ public:  	                            SettingsNotifier& settings_notifier);  private: -	static float constexpr f_close_factor = 16.f; -	static float constexpr f_diverse_factor = .5f; -	static float constexpr f_random_factor = .5f; +	static float constexpr f_close_factor = 4.f; +	static float constexpr f_diverse_factor = 1.f; +	static float constexpr f_random_factor = 1.f;  	void fCloseKnobValueChanged(float value);  	void fDiverseKnobValueChanged(float value);  | 
