~xzcvczx/kicad/page-settings_datetime

« back to all changes in this revision

Viewing changes to pcbnew/footprint_wizard_frame.cpp

  • Committer: jean-pierre charras
  • Date: 2015-12-30 08:10:39 UTC
  • mfrom: (6408.1.1 testing)
  • Revision ID: jp.charras@wanadoo.fr-20151230081039-ut7tpyetkt78032e
Github plugin with curl: fix lack of message when trying to download a non existing footprint library (Curl does not return an error: the message "Not Fount" is stored in buffer, and the zip handler returns a not suitable error message)
Minor and very minor other fixes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 * This program source code file is part of KiCad, a free EDA CAD application.
3
3
 *
4
4
 * Copyright (C) 2012-2015 Miguel Angel Ajo Pelayo <miguelangel@nbee.es>
5
 
 * Copyright (C) 2012-2015 Jean-Pierre Charras, jp.charras at  wanadoo.fr
 
5
 * Copyright (C) 2012-2015 Jean-Pierre Charras, jp.charras at wanadoo.fr
6
6
 * Copyright (C) 2008-2015 Wayne Stambaugh <stambaughw@verizon.net>
7
7
 * Copyright (C) 2004-2015 KiCad Developers, see change_log.txt for contributors.
8
8
 *
95
95
#ifdef __WINDOWS__
96
96
                KICAD_DEFAULT_DRAWFRAME_STYLE | wxSTAY_ON_TOP,
97
97
#else
98
 
                KICAD_DEFAULT_DRAWFRAME_STYLE | wxFRAME_FLOAT_ON_PARENT,
 
98
                aParent ? KICAD_DEFAULT_DRAWFRAME_STYLE | wxFRAME_FLOAT_ON_PARENT
 
99
                          : KICAD_DEFAULT_DRAWFRAME_STYLE | wxSTAY_ON_TOP,
99
100
#endif
100
101
                FOOTPRINT_WIZARD_FRAME_NAME )
101
102
{