Branch: refs/heads/master
Author: Matthew Brush <matt(a)geany.org>
Committer: Matthew Brush <matt(a)geany.org>
Date: Mon, 07 Jan 2013 03:15:00 UTC
Commit: 1a7a26682d20e55d8d3db478678896fc5fb4cfa6
https://github.com/geany/geany/commit/1a7a26682d20e55d8d3db478678896fc5fb4c…
Log Message:
-----------
Add doc for terminal background image and regen HTML
Modified Paths:
--------------
doc/geany.html
doc/geany.txt
Modified: doc/geany.html
878 files changed, 444 insertions(+), 434 deletions(-)
===================================================================
No diff available, check online
Modified: doc/geany.txt
3 files changed, 3 insertions(+), 0 deletions(-)
===================================================================
@@ -2604,6 +2604,9 @@ Foreground color
Background color
Select the background color of the terminal.
+Background image
+ Select the background image to show behind the terminal's text.
+
Scrollback lines
The number of lines buffered so that you can scroll though the history.
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).
Branch: refs/heads/master
Author: Colomban Wendling <ban(a)herbesfolles.org>
Committer: Colomban Wendling <ban(a)herbesfolles.org>
Date: Fri, 02 Nov 2012 20:48:49 UTC
Commit: 4423de1a7223bc85ea89d706e699d2344d8dd36a
https://github.com/geany/geany/commit/4423de1a7223bc85ea89d706e699d2344d8dd…
Log Message:
-----------
Printing: fix improper margins when printing to a physical device
We were improperly adding the printing device margins to the area
where we print, leading to wider margins on physical outputs than
on PDF or preview outputs (which have no hard margins), as well as
wasting space and not respecting user's settings.
Closes #3580269.
Modified Paths:
--------------
src/printing.c
Modified: src/printing.c
13 files changed, 1 insertions(+), 12 deletions(-)
===================================================================
@@ -309,18 +309,7 @@ static void setup_range(DocInfo *dinfo, GtkPrintContext *ctx)
dinfo->fr.rc.top = dinfo->fr.rcPage.top;
dinfo->fr.rc.right = dinfo->fr.rcPage.right;
dinfo->fr.rc.bottom = dinfo->fr.rcPage.bottom;
-#if GTK_CHECK_VERSION(2, 20, 0)
- {
- gdouble m_top, m_left, m_right, m_bottom;
- if (gtk_print_context_get_hard_margins(ctx, &m_top, &m_bottom, &m_left, &m_right))
- {
- dinfo->fr.rc.left += m_left;
- dinfo->fr.rc.top += m_top;
- dinfo->fr.rc.right -= m_right;
- dinfo->fr.rc.bottom -= m_bottom;
- }
- }
-#endif
+
if (printing_prefs.print_page_header)
dinfo->fr.rc.top += dinfo->line_height * 3; /* header height */
if (printing_prefs.print_page_numbers)
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).