summaryrefslogtreecommitdiffstatshomepage
path: root/tableview.go
diff options
context:
space:
mode:
Diffstat (limited to 'tableview.go')
-rw-r--r--tableview.go8
1 files changed, 0 insertions, 8 deletions
diff --git a/tableview.go b/tableview.go
index 9605f718..e879c911 100644
--- a/tableview.go
+++ b/tableview.go
@@ -9,7 +9,6 @@ package walk
import (
"encoding/json"
"fmt"
- "math/big"
"reflect"
"syscall"
"time"
@@ -2105,13 +2104,6 @@ func (tv *TableView) lvWndProc(origWndProcPtr uintptr, hwnd win.HWND, msg uint32
text = checkmark
}
- case *big.Rat:
- prec := tv.columns.items[col].precision
- if prec == 0 {
- prec = 2
- }
- text = formatBigRatGrouped(val, prec)
-
default:
text = fmt.Sprintf(tv.columns.items[col].format, val)
}