From bcfac4b477d01439543e406193f15cdf263dd148 Mon Sep 17 00:00:00 2001 From: Marco Mattila Date: Tue, 5 Jul 2011 00:52:19 +0300 Subject: [PATCH] Fix default pcbnew text item justification. --- pcbnew/class_pcb_text.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pcbnew/class_pcb_text.cpp b/pcbnew/class_pcb_text.cpp index 535ce820eb..1cd1f7bca4 100644 --- a/pcbnew/class_pcb_text.cpp +++ b/pcbnew/class_pcb_text.cpp @@ -119,7 +119,7 @@ int TEXTE_PCB::ReadTextePcbDescr( LINE_READER* aReader ) { style[0] = 0; int normal_display = 1; - char hJustify = 'l'; + char hJustify = 'c'; sscanf( line + 2, " %d %d %lX %s %c\n", &m_Layer, &normal_display, &m_TimeStamp, style, &hJustify );