Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
feh
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
derf
feh
Commits
fd524633
Commit
fd524633
authored
7 years ago
by
Birte Kristina Friesel
Browse files
Options
Downloads
Patches
Plain Diff
Release v2.19.3
parent
be4c0b01
No related branches found
Branches containing commit
Tags
2.19.3
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
ChangeLog
+7
-0
7 additions, 0 deletions
ChangeLog
src/wallpaper.c
+1
-1
1 addition, 1 deletion
src/wallpaper.c
with
8 additions
and
1 deletion
ChangeLog
+
7
−
0
View file @
fd524633
Mon, 21 Aug 2017 19:04:00 +0200 Daniel Friesel <derf+feh@finalrewind.org>
* Release v2.19.3
* Save geometry data in .fehbg when setting a wallpaper with --geometry
* Fix Imlib2 developer warning and improve out-of-memory error message
when using --thumbnails / --index on large directories
Sat, 12 Aug 2017 05:05:24 +0200 Daniel Friesel <derf+feh@finalrewind.org>
* Release v2.19.2
...
...
This diff is collapsed.
Click to expand it.
src/wallpaper.c
+
1
−
1
View file @
fd524633
...
...
@@ -317,7 +317,7 @@ void feh_wm_set_bg(char *fil, Imlib_Image im, int centered, int scaled,
snprintf
(
argptr
,
sizeof
(
fehbg_args
),
"--no-xinerama"
);
argptr
+=
strlen
(
argptr
);
#endif
/* HAVE_LIBXINERAMA */
if
((
opt
.
geom_flags
&
XValue
)
&&
(
sizeof
(
fehbg_args
)
-
strlen
(
fehbg_args
)
>
2
0
))
{
if
((
opt
.
geom_flags
&
XValue
)
&&
(
sizeof
(
fehbg_args
)
-
strlen
(
fehbg_args
)
>
6
0
))
{
snprintf
(
argptr
,
sizeof
(
fehbg_args
)
-
strlen
(
fehbg_args
),
" --geometry %c%d"
,
opt
.
geom_flags
&
XNegative
?
'-'
:
'+'
,
opt
.
geom_flags
&
XNegative
?
abs
(
opt
.
geom_x
)
:
opt
.
geom_x
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment