Fix CEdit background margins, closes #1029

This mismatch happened after changes in 08d87fa975
1008-fix
krzys-h 2017-11-04 11:56:15 +01:00
parent 5021a4091e
commit 5f5e5234fc
1 changed files with 3 additions and 3 deletions

View File

@ -47,9 +47,9 @@
namespace Ui
{
const float MARGX = (5.0f/640.0f);
const float MARGY = (5.0f/480.0f);
const float MARGYS = (4.0f/480.0f);
const float MARGX = (3.75f/640.0f);
const float MARGY = (3.75f/480.0f);
const float MARGYS = (2.75f/480.0f);
const float MARGY1 = (1.0f/480.0f);
//! time limit for double-click
const float DELAY_DBCLICK = 0.75f;