[geany/geany-plugins] 32bec5: multiterm: Fix use of deprecated function

Matthew Brush git-noreply at xxxxx
Sun Mar 25 18:42:54 UTC 2012


Branch:      refs/heads/master
Author:      Matthew Brush <matt at geany.org>
Committer:   Matthew Brush <matt at geany.org>
Date:        Sun, 25 Mar 2012 18:42:54
Commit:      32bec5c6adf9a05c035f95852caa332f16af7364
             https://github.com/geany/geany-plugins/commit/32bec5c6adf9a05c035f95852caa332f16af7364

Log Message:
-----------
multiterm: Fix use of deprecated function


Modified Paths:
--------------
    multiterm/src/terminal.vala

Modified: multiterm/src/terminal.vala
4 files changed, 2 insertions(+), 2 deletions(-)
===================================================================
@@ -130,9 +130,9 @@ namespace MultiTerm
 			terminal.child_exited.connect(on_child_exited);
 
 			if (this.sh.cfg != null)
-				terminal.set_font_from_string_full(this.sh.font, TerminalAntiAlias.FORCE_ENABLE);
+				terminal.set_font_from_string(this.sh.font);
 			else
-				terminal.set_font_from_string_full("Monospace 9", TerminalAntiAlias.FORCE_ENABLE);
+				terminal.set_font_from_string("Monospace 9");
 
 			terminal.realize.connect(on_vte_realize); /* colors can only be set on realize (lame) */
 			run_command(this.sh.command);



--------------
This E-Mail was brought to you by github_commit_mail.py (Source: TBD).



More information about the Plugins-Commits mailing list