Works fine here (no separators):
https://postimg.cc/jChZQv3t
produced from this code:
$ rlwrap wish
% foreach i {1 2 3 4 5 6 7} { lappend w [radiobutton .rb$i -text $i] }
% pack {*}$w -side left
%
Which is why it is **always** better to post a short example code
snippet that creates the issue.
I have these radiobuttons with a separation between them:
Screenshot:
https://a.pomf.cat/rojnkv.png
Note that they are gray. Nothing in my code tells them to be gray
so I guess it's some default thing.
I tried all options in the manual page and can't get rid of them.
Is it possible to remove them? Or "groom" them differently?
On Wed, 26 Oct 2022 01:17:48 -0000 (UTC), Rich wrote:
Works fine here (no separators):
https://postimg.cc/jChZQv3t
produced from this code:
$ rlwrap wish
% foreach i {1 2 3 4 5 6 7} { lappend w [radiobutton .rb$i -text $i] } >> % pack {*}$w -side left
%
Which is why it is **always** better to post a short example code
snippet that creates the issue.
OK. So please try this slightly different version of your own code:
foreach i {1 2 3 4 5 6 7} { lappend w [radiobutton .rb$i -text $i -background #ffffff] }
pack {*}$w -side left
I really want it to be white, so... :-)
foreach i {1 2 3 4 5 6 7} {
lappend w [radiobutton .rb$i -text $i -background #ffffff -highlightthickness 0] }
pack {*}$w -side left
And no faint grey 'separators'.
| Sysop: | Keyop |
|---|---|
| Location: | Huddersfield, West Yorkshire, UK |
| Users: | 715 |
| Nodes: | 16 (2 / 14) |
| Uptime: | 14:16:22 |
| Calls: | 12,101 |
| Calls today: | 1 |
| Files: | 15,004 |
| Messages: | 6,518,022 |