mirror of https://github.com/GNOME/gimp.git
set tab-style for dockables.
2006-02-20 Sven Neumann <sven@gimp.org> * etc/sessionrc: set tab-style for dockables.
This commit is contained in:
parent
6780a48010
commit
a011d17e44
|
@ -1,3 +1,7 @@
|
|||
2006-02-20 Sven Neumann <sven@gimp.org>
|
||||
|
||||
* etc/sessionrc: set tab-style for dockables.
|
||||
|
||||
2006-02-20 Sven Neumann <sven@gimp.org>
|
||||
|
||||
* configure.in: updated comments.
|
||||
|
|
12
NEWS
12
NEWS
|
@ -7,6 +7,18 @@ This is the development branch of The GIMP. Here's where all the shiny
|
|||
new stuff is being done that will one day be released as GIMP 2.4.
|
||||
|
||||
|
||||
Changes in GIMP 2.3.8
|
||||
=====================
|
||||
|
||||
- added new tile primitive Triangle to Mosaic plug-in
|
||||
- speed up Gaussian Blur plug-in
|
||||
- suppress redundant progress updates from plug-ins
|
||||
- changed some gimprc and sessionrc default values
|
||||
- do not focus transform tool dialogs on map
|
||||
- added some missing tool shortcuts
|
||||
- bug fixes and code cleanup
|
||||
|
||||
|
||||
Changes in GIMP 2.3.7
|
||||
=====================
|
||||
|
||||
|
|
|
@ -21,15 +21,23 @@
|
|||
(follow-active-image "true"))
|
||||
(dock
|
||||
(book
|
||||
(dockable "gimp-layer-list")
|
||||
(dockable "gimp-channel-list")
|
||||
(dockable "gimp-vectors-list")
|
||||
(dockable "gimp-undo-history"))
|
||||
(dockable "gimp-layer-list"
|
||||
(tab-style icon))
|
||||
(dockable "gimp-channel-list"
|
||||
(tab-style icon))
|
||||
(dockable "gimp-vectors-list"
|
||||
(tab-style icon))
|
||||
(dockable "gimp-undo-history"
|
||||
(tab-style icon)))
|
||||
(book
|
||||
(position 360)
|
||||
(dockable "gimp-color-editor")
|
||||
(dockable "gimp-brush-grid")
|
||||
(dockable "gimp-pattern-grid")
|
||||
(dockable "gimp-gradient-list"))))
|
||||
(dockable "gimp-color-editor"
|
||||
(tab-style preview))
|
||||
(dockable "gimp-brush-grid"
|
||||
(tab-style preview))
|
||||
(dockable "gimp-pattern-grid"
|
||||
(tab-style preview))
|
||||
(dockable "gimp-gradient-list"
|
||||
(tab-style preview)))))
|
||||
|
||||
# end of sessionrc
|
||||
|
|
Loading…
Reference in New Issue