Blame view

settings.lua 353 Bytes
3ef575ee   Stefan Wichmann   Initial checkin
1
2
3
4
5
6
7
8
  data:extend({
      {
          type = "int-setting",
  		default_value = 2,
  		minimum_value = 0,
  		maximum_value = 10,
          name = "calcui-decimal-places",
          setting_type = "runtime-per-user",
3ef575ee   Stefan Wichmann   Initial checkin
9
10
11
      },
  	{
          type = "bool-setting",
2de48216   Stefan Wichmann   Version 0.18.4 pu...
12
  		default_value = false,
4078977a   Stefan Wichmann   Prepare for first...
13
          name = "calcui-clear-on-calc",
3ef575ee   Stefan Wichmann   Initial checkin
14
          setting_type = "runtime-per-user",
3ef575ee   Stefan Wichmann   Initial checkin
15
16
      }
  })