mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2025-09-14 10:13:19 +02:00
- support for background color setting - removed several global config settings (such as g_Drc_On) - wrapped most of global config settings in PCB_GENERAL_SETTINGS class - reorganized PCB general options dialog to clearly mark which options concern only the legacy canvas - new GAL feature for legacy users: double-click (or E) to change track width available as an option. Fixes: lp:1530543 * https://bugs.launchpad.net/kicad/+bug/1530543 Fixes: lp:1707145 * https://bugs.launchpad.net/kicad/+bug/1707145
15 lines
216 B
C
15 lines
216 B
C
/**
|
|
* @file pcbnew_config.h
|
|
* @brief Configuration parameters for Pcbnew.
|
|
*/
|
|
|
|
#ifndef _PCBNEW_CONFIG_H_
|
|
#define _PCBNEW_CONFIG_H_
|
|
|
|
#include <config_params.h>
|
|
|
|
/* Useful macro : */
|
|
|
|
|
|
#endif // _PCBNEW_CONFIG_H_
|