mirror of
https://github.com/elementary/gala.git
synced 2024-11-27 15:45:31 +03:00
Don't classify constants with "static" which is misleading and not supported
This commit is contained in:
parent
4c94f2c66e
commit
063bf0fb41
@ -27,10 +27,10 @@ namespace Gala
|
||||
*/
|
||||
public class IconGroup : Actor
|
||||
{
|
||||
public static const int SIZE = 64;
|
||||
public const int SIZE = 64;
|
||||
|
||||
static const int PLUS_SIZE = 8;
|
||||
static const int PLUS_WIDTH = 24;
|
||||
const int PLUS_SIZE = 8;
|
||||
const int PLUS_WIDTH = 24;
|
||||
|
||||
const int SHOW_CLOSE_BUTTON_DELAY = 200;
|
||||
|
||||
|
@ -27,8 +27,8 @@ namespace Gala
|
||||
*/
|
||||
public class IconGroupContainer : Actor
|
||||
{
|
||||
public static const int SPACING = 48;
|
||||
public static const int GROUP_WIDTH = 64;
|
||||
public const int SPACING = 48;
|
||||
public const int GROUP_WIDTH = 64;
|
||||
|
||||
public signal void request_reposition ();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user