Rocksolid Light

Welcome to novaBBS (click a section below)

mail  files  register  newsreader  groups  login

Message-ID:  

Oh, I've seen copies [of Linux Journal] around the terminal room at The Labs. -- Dennis Ritchie


devel / comp.lang.tcl / Re: Unwanted separators in radiobuttons

SubjectAuthor
* Unwanted separators in radiobuttonsLuc
`* Unwanted separators in radiobuttonsRich
 `* Unwanted separators in radiobuttonsLuc
  `* Unwanted separators in radiobuttonsRich
   `- Unwanted separators in radiobuttonsLuc

1
Unwanted separators in radiobuttons

<20221025213145.02441872@lud1.home>

  copy mid

https://www.novabbs.com/devel/article-flat.php?id=9906&group=comp.lang.tcl#9906

  copy link   Newsgroups: comp.lang.tcl
Path: i2pn2.org!i2pn.org!aioe.org!uGfUeEsPwM7vWODWOpPvUw.user.46.165.242.75.POSTED!not-for-mail
From: no...@no.no (Luc)
Newsgroups: comp.lang.tcl
Subject: Unwanted separators in radiobuttons
Date: Tue, 25 Oct 2022 21:31:45 -0300
Organization: Aioe.org NNTP Server
Message-ID: <20221025213145.02441872@lud1.home>
Mime-Version: 1.0
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7bit
Injection-Info: gioia.aioe.org; logging-data="58464"; posting-host="uGfUeEsPwM7vWODWOpPvUw.user.gioia.aioe.org"; mail-complaints-to="abuse@aioe.org";
X-Newsreader: Claws Mail 3.14.1 (GTK+ 2.24.31; x86_64-pc-linux-gnu)
X-Notice: Filtered by postfilter v. 0.9.2
 by: Luc - Wed, 26 Oct 2022 00:31 UTC

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?

TIA

--
Luc
>>

Re: Unwanted separators in radiobuttons

<tja1rs$290k5$1@dont-email.me>

  copy mid

https://www.novabbs.com/devel/article-flat.php?id=9907&group=comp.lang.tcl#9907

  copy link   Newsgroups: comp.lang.tcl
Path: i2pn2.org!i2pn.org!aioe.org!eternal-september.org!reader01.eternal-september.org!.POSTED!not-for-mail
From: ric...@example.invalid (Rich)
Newsgroups: comp.lang.tcl
Subject: Re: Unwanted separators in radiobuttons
Date: Wed, 26 Oct 2022 01:17:48 -0000 (UTC)
Organization: A noiseless patient Spider
Lines: 26
Message-ID: <tja1rs$290k5$1@dont-email.me>
References: <20221025213145.02441872@lud1.home>
Injection-Date: Wed, 26 Oct 2022 01:17:48 -0000 (UTC)
Injection-Info: reader01.eternal-september.org; posting-host="6c38b256761316b0bf57283840d72c65";
logging-data="2392709"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1+SD3gV4QHK2pD6VOm0Keqz"
User-Agent: tin/2.0.1-20111224 ("Achenvoir") (UNIX) (Linux/3.10.17 (x86_64))
Cancel-Lock: sha1:Dlo9VU8PFzoMvSO6lrcSMETy9Uo=
 by: Rich - Wed, 26 Oct 2022 01:17 UTC

Luc <no@no.no> wrote:
> 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?

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.

Re: Unwanted separators in radiobuttons

<20221025230013.34751069@lud1.home>

  copy mid

https://www.novabbs.com/devel/article-flat.php?id=9908&group=comp.lang.tcl#9908

  copy link   Newsgroups: comp.lang.tcl
Path: i2pn2.org!i2pn.org!aioe.org!o0ptBsobQy7n8PMZ296l1Q.user.46.165.242.75.POSTED!not-for-mail
From: no...@no.no (Luc)
Newsgroups: comp.lang.tcl
Subject: Re: Unwanted separators in radiobuttons
Date: Tue, 25 Oct 2022 23:00:13 -0300
Organization: Aioe.org NNTP Server
Message-ID: <20221025230013.34751069@lud1.home>
References: <20221025213145.02441872@lud1.home>
<tja1rs$290k5$1@dont-email.me>
Mime-Version: 1.0
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7bit
Injection-Info: gioia.aioe.org; logging-data="37116"; posting-host="o0ptBsobQy7n8PMZ296l1Q.user.gioia.aioe.org"; mail-complaints-to="abuse@aioe.org";
X-Newsreader: Claws Mail 3.14.1 (GTK+ 2.24.31; x86_64-pc-linux-gnu)
X-Notice: Filtered by postfilter v. 0.9.2
 by: Luc - Wed, 26 Oct 2022 02:00 UTC

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... :-)

--
Luc
>>

Re: Unwanted separators in radiobuttons

<tja6ei$2c8tr$1@dont-email.me>

  copy mid

https://www.novabbs.com/devel/article-flat.php?id=9909&group=comp.lang.tcl#9909

  copy link   Newsgroups: comp.lang.tcl
Path: i2pn2.org!i2pn.org!eternal-september.org!reader01.eternal-september.org!.POSTED!not-for-mail
From: ric...@example.invalid (Rich)
Newsgroups: comp.lang.tcl
Subject: Re: Unwanted separators in radiobuttons
Date: Wed, 26 Oct 2022 02:36:03 -0000 (UTC)
Organization: A noiseless patient Spider
Lines: 34
Message-ID: <tja6ei$2c8tr$1@dont-email.me>
References: <20221025213145.02441872@lud1.home> <tja1rs$290k5$1@dont-email.me> <20221025230013.34751069@lud1.home>
Injection-Date: Wed, 26 Oct 2022 02:36:03 -0000 (UTC)
Injection-Info: reader01.eternal-september.org; posting-host="6c38b256761316b0bf57283840d72c65";
logging-data="2499515"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1+qLQa9JyBFSI7NbgwXe14+"
User-Agent: tin/2.0.1-20111224 ("Achenvoir") (UNIX) (Linux/3.10.17 (x86_64))
Cancel-Lock: sha1:iHOIiTJoCptGAx1W/w1m1zYlkaY=
 by: Rich - Wed, 26 Oct 2022 02:36 UTC

Luc <no@no.no> wrote:
> 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... :-)

Which is fine, but we can't know that on the other side of usenet
unless you tell us. :)

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'.

Re: Unwanted separators in radiobuttons

<20221026000335.25afc898@lud1.home>

  copy mid

https://www.novabbs.com/devel/article-flat.php?id=9910&group=comp.lang.tcl#9910

  copy link   Newsgroups: comp.lang.tcl
Path: i2pn2.org!i2pn.org!aioe.org!tqsnQ7P6bZBL9vjtUzwgMQ.user.46.165.242.75.POSTED!not-for-mail
From: no...@no.no (Luc)
Newsgroups: comp.lang.tcl
Subject: Re: Unwanted separators in radiobuttons
Date: Wed, 26 Oct 2022 00:03:35 -0300
Organization: Aioe.org NNTP Server
Message-ID: <20221026000335.25afc898@lud1.home>
References: <20221025213145.02441872@lud1.home>
<tja1rs$290k5$1@dont-email.me>
<20221025230013.34751069@lud1.home>
<tja6ei$2c8tr$1@dont-email.me>
Mime-Version: 1.0
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7bit
Injection-Info: gioia.aioe.org; logging-data="2680"; posting-host="tqsnQ7P6bZBL9vjtUzwgMQ.user.gioia.aioe.org"; mail-complaints-to="abuse@aioe.org";
X-Newsreader: Claws Mail 3.14.1 (GTK+ 2.24.31; x86_64-pc-linux-gnu)
X-Notice: Filtered by postfilter v. 0.9.2
 by: Luc - Wed, 26 Oct 2022 03:03 UTC

On Wed, 26 Oct 2022 02:36:03 -0000 (UTC), Rich wrote:

> 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'.

Yes, that solves it.

Thank you once again.

--
Luc
>>

1
server_pubkey.txt

rocksolid light 0.9.8
clearnet tor