Issue 7366 in pharo: Positioning plugins in the middle is broken

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

Issue 7366 in pharo: Positioning plugins in the middle is broken

pharo
Status: New
Owner: ----
Labels: Milestone-2.0 Type-Bug Importance-Low Target-Nautilus

New issue 7366 by [hidden email]: Positioning plugins in the middle is  
broken
http://code.google.com/p/pharo/issues/detail?id=7366

When selecting a plugin to be displayed in the middle, a new opened browser  
will not open because of a DNU.

The problem is in NautilusUI>>#addAll:

        self buildMiddlePlugins ifNotNil: [:middle |
                middleHeight := middle height+4.
                aWindow
                        addMorph: middle
                        fullFrame: ((0 @ 0.5 corner: 1 @ 0.5))
                        bottomOffset: middleHeight).          <-- __DNU__
                middle color: Color transparent].

Seeing Stephane's last change of the method, there is simply a  
`asLayoutFrame` missing, should be:

        self buildMiddlePlugins ifNotNil: [:middle |
                middleHeight := middle height+4.
                aWindow
                        addMorph: middle
                        fullFrame: ((0 @ 0.5 corner: 1 @ 0.5))
                        asLayoutFrame bottomOffset: middleHeight).
                middle color: Color transparent].



_______________________________________________
Pharo-bugtracker mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-bugtracker
Reply | Threaded
Open this post in threaded view
|

Re: Issue 7366 in pharo: Positioning plugins in the middle is broken

pharo

Comment #1 on issue 7366 by [hidden email]: Positioning plugins in the  
middle is broken
http://code.google.com/p/pharo/issues/detail?id=7366

Was already fixed... sorry for the noise...


_______________________________________________
Pharo-bugtracker mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-bugtracker
Reply | Threaded
Open this post in threaded view
|

Re: Issue 7366 in pharo: Positioning plugins in the middle is broken

pharo
Updates:
        Status: Invalid

Comment #2 on issue 7366 by [hidden email]: Positioning plugins in  
the middle is broken
http://code.google.com/p/pharo/issues/detail?id=7366

(No comment was entered for this change.)


_______________________________________________
Pharo-bugtracker mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-bugtracker