mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-06-30 10:33:54 -07:00
Hardcode default log level for FlowWidget/FlowLayout (#5769)
This commit is contained in:
parent
1ada5ea424
commit
5af71d1c2e
3 changed files with 6 additions and 6 deletions
|
|
@ -47,9 +47,9 @@
|
||||||
# card_info = false
|
# card_info = false
|
||||||
# card_list = false
|
# card_list = false
|
||||||
|
|
||||||
flow_layout.debug = false
|
#flow_layout = false
|
||||||
flow_widget.debug = false
|
#flow_widget = false
|
||||||
flow_widget.size.debug = false
|
#flow_widget.size = false
|
||||||
|
|
||||||
# pixel_map_generator = false
|
# pixel_map_generator = false
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,7 @@
|
||||||
#include <QWidget>
|
#include <QWidget>
|
||||||
#include <qstyle.h>
|
#include <qstyle.h>
|
||||||
|
|
||||||
inline Q_LOGGING_CATEGORY(FlowLayoutLog, "flow_layout");
|
inline Q_LOGGING_CATEGORY(FlowLayoutLog, "flow_layout", QtInfoMsg);
|
||||||
|
|
||||||
class FlowLayout : public QLayout
|
class FlowLayout : public QLayout
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -7,8 +7,8 @@
|
||||||
#include <QWidget>
|
#include <QWidget>
|
||||||
#include <qscrollarea.h>
|
#include <qscrollarea.h>
|
||||||
|
|
||||||
inline Q_LOGGING_CATEGORY(FlowWidgetLog, "flow_widget");
|
inline Q_LOGGING_CATEGORY(FlowWidgetLog, "flow_widget", QtInfoMsg);
|
||||||
inline Q_LOGGING_CATEGORY(FlowWidgetSizeLog, "flow_widget.size");
|
inline Q_LOGGING_CATEGORY(FlowWidgetSizeLog, "flow_widget.size", QtInfoMsg);
|
||||||
|
|
||||||
class FlowWidget final : public QWidget
|
class FlowWidget final : public QWidget
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue