styling in nautilus

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
5 messages Options
Reply | Threaded
Open this post in threaded view
|

styling in nautilus

Andrei Chis
Hi,

In the latest version (169) in Nautilus method code does not get highlighted (or gets highlighted highlighted) very slowly. I think it comes from rubric.

Can anyone else confirm.

Andrei
Reply | Threaded
Open this post in threaded view
|

Re: styling in nautilus

Peter Uhnak
It may be result of my changes to TextModel... I'll check.

From: [hidden email]
Sent: ‎7/‎12/‎2015 5:34 PM
To: [hidden email]
Subject: [Pharo-dev] styling in nautilus

Hi,

In the latest version (169) in Nautilus method code does not get highlighted (or gets highlighted highlighted) very slowly. I think it comes from rubric.

Can anyone else confirm.

Andrei
Reply | Threaded
Open this post in threaded view
|

Re: styling in nautilus

Peter Uhnak
Never mind from my part... I thought it didn't work at all, so it shouldn't be my doing...

Peter

On Sun, Jul 12, 2015 at 5:44 PM, Peter Uhnak <[hidden email]> wrote:
It may be result of my changes to TextModel... I'll check.

From: [hidden email]
Sent: ‎7/‎12/‎2015 5:34 PM
To: [hidden email]
Subject: [Pharo-dev] styling in nautilus

Hi,

In the latest version (169) in Nautilus method code does not get highlighted (or gets highlighted highlighted) very slowly. I think it comes from rubric.

Can anyone else confirm.

Andrei

Reply | Threaded
Open this post in threaded view
|

Re: styling in nautilus

Andrei Chis
Seems that this was caused by the change from RubShoutStylerDecorator>>style: from Rubric-AlainPlantec.252 to remove the check for text size and always style in a background process.

style: aText
aText size < self minTextSizeForStylingInBackground
ifTrue: [ ^ self styler style: aText ].
self styler styleInBackgroundProcess: aText

--

style: aText
self styler styleInBackgroundProcess: aText


However that was done to fix issue 15930 and it was like that for some time before.

Did anything changed in the system, maybe related to scheduling processes?


Cheers,
Andrei

On Mon, Jul 13, 2015 at 3:24 PM, Peter Uhnák <[hidden email]> wrote:
Never mind from my part... I thought it didn't work at all, so it shouldn't be my doing...

Peter

On Sun, Jul 12, 2015 at 5:44 PM, Peter Uhnak <[hidden email]> wrote:
It may be result of my changes to TextModel... I'll check.

From: [hidden email]
Sent: ‎7/‎12/‎2015 5:34 PM
To: [hidden email]
Subject: [Pharo-dev] styling in nautilus

Hi,

In the latest version (169) in Nautilus method code does not get highlighted (or gets highlighted highlighted) very slowly. I think it comes from rubric.

Can anyone else confirm.

Andrei


Reply | Threaded
Open this post in threaded view
|

Re: styling in nautilus

Andrei Chis
Strangely enough doing 'Nautilus useExperimentalFastTable: false' brings the highlighting back.

On Tue, Jul 14, 2015 at 2:31 PM, Andrei Chis <[hidden email]> wrote:
Seems that this was caused by the change from RubShoutStylerDecorator>>style: from Rubric-AlainPlantec.252 to remove the check for text size and always style in a background process.

style: aText
aText size < self minTextSizeForStylingInBackground
ifTrue: [ ^ self styler style: aText ].
self styler styleInBackgroundProcess: aText

--

style: aText
self styler styleInBackgroundProcess: aText


However that was done to fix issue 15930 and it was like that for some time before.

Did anything changed in the system, maybe related to scheduling processes?


Cheers,
Andrei

On Mon, Jul 13, 2015 at 3:24 PM, Peter Uhnák <[hidden email]> wrote:
Never mind from my part... I thought it didn't work at all, so it shouldn't be my doing...

Peter

On Sun, Jul 12, 2015 at 5:44 PM, Peter Uhnak <[hidden email]> wrote:
It may be result of my changes to TextModel... I'll check.

From: [hidden email]
Sent: ‎7/‎12/‎2015 5:34 PM
To: [hidden email]
Subject: [Pharo-dev] styling in nautilus

Hi,

In the latest version (169) in Nautilus method code does not get highlighted (or gets highlighted highlighted) very slowly. I think it comes from rubric.

Can anyone else confirm.

Andrei