Blame view

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