Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Files
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
430
Issues
430
List
Boards
Labels
Service Desk
Milestones
Merge Requests
25
Merge Requests
25
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
GNOME
Files
Commits
a4015a4f
Commit
a4015a4f
authored
Dec 19, 1999
by
Havoc Pennington
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
all compiling again
parent
5e2d0909
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
14 additions
and
5 deletions
+14
-5
ChangeLog-20000414
ChangeLog-20000414
+12
-1
src/file-manager/Makefile.am
src/file-manager/Makefile.am
+0
-2
src/file-manager/desktop-item.c
src/file-manager/desktop-item.c
+2
-2
No files found.
ChangeLog-20000414
View file @
a4015a4f
1999-12-17 Havoc Pennington <hp@redhat.com>
* src/file-manager/desktop-item.h: New module, for items
on the desktop
* src/file-manager/fm-directory-view.c: Change to use
get_current_icon_cache() (it wasn't ever freeing the icon cache anyway)
...
...
@@ -33,7 +36,15 @@
* src/ntl-window.c, src/ntl-window.h: Added calls to
allow/disallow some of the toolbar operations.
>>>>>>> 1.39
1999-12-17 Havoc Pennington <hp@redhat.com>
* src/file-manager/fm-directory-view.c: Change to use
get_current_icon_cache() (it wasn't ever freeing the icon cache anyway)
* src/file-manager/fm-icon-cache.c (fm_get_current_icon_cache):
function to get a global icon cache, we will share this throughout
the program.
1999-12-17 Havoc Pennington <hp@redhat.com>
* src/ntl-window.c (nautilus_window_realize): set the mini icon.
...
...
src/file-manager/Makefile.am
View file @
a4015a4f
...
...
@@ -40,8 +40,6 @@ libntl_file_manager_la_SOURCES= \
noinst_PROGRAMS
=
gnome-desktop
gnome_desktop_SOURCES
=
\
fm-icon-cache.c
\
fm-icon-cache.h
\
desktop-canvas.c
\
desktop-canvas.h
\
desktop-item.c
\
...
...
src/file-manager/desktop-item.c
View file @
a4015a4f
...
...
@@ -263,8 +263,8 @@ icon_size_request (DesktopItem *item,
icon
=
item
->
user_data
;
if
(
icon
->
pixbuf
)
{
*
width
=
gdk_pixbuf_width
(
icon
->
pixbuf
);
*
height
=
gdk_pixbuf_height
(
icon
->
pixbuf
);
*
width
=
gdk_pixbuf_
get_
width
(
icon
->
pixbuf
);
*
height
=
gdk_pixbuf_
get_
height
(
icon
->
pixbuf
);
}
else
{
*
width
=
1
;
*
height
=
1
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment