@@ -48,7 +48,7 @@ def handle_buttons(self):
48
48
self .previous .disabled = self .current_page == 0
49
49
self .next .disabled = self .current_page == self .total_page_count - 1
50
50
51
- @discord .ui .button (emoji = discord . PartialEmoji ( name = " \U000023ee " ) , disabled = True )
51
+ @discord .ui .button (label = "<<" , disabled = True , style = discord . ButtonStyle . blurple )
52
52
async def first (self , interaction : discord .Interaction , _ ):
53
53
if interaction .user != self .ctx .user :
54
54
embed = discord .Embed (description = "You cannot control this pagination because you did not execute it." ,
@@ -59,7 +59,7 @@ async def first(self, interaction: discord.Interaction, _):
59
59
self .counter .label = f"{ self .current_page + 1 } /{ self .total_page_count } "
60
60
await interaction .response .edit_message (embed = self .pages [self .current_page ], view = self )
61
61
62
- @discord .ui .button (emoji = discord . PartialEmoji ( name = " \U000025c0 " ) , disabled = True )
62
+ @discord .ui .button (label = "<" , disabled = True , style = discord . ButtonStyle . red )
63
63
async def previous (self , interaction : discord .Interaction , _ ):
64
64
if interaction .user != self .ctx .user :
65
65
embed = discord .Embed (description = "You cannot control this pagination because you did not execute it." ,
@@ -74,7 +74,7 @@ async def previous(self, interaction: discord.Interaction, _):
74
74
async def counter (self , interaction : discord .Interaction , button : discord .Button ):
75
75
pass
76
76
77
- @discord .ui .button (emoji = discord . PartialEmoji ( name = " \U000025b6 " ) )
77
+ @discord .ui .button (label = ">" , style = discord . ButtonStyle . green )
78
78
async def next (self , interaction : discord .Interaction , _ ):
79
79
if interaction .user != self .ctx .user :
80
80
embed = discord .Embed (description = "You cannot control this pagination because you did not execute it." ,
@@ -85,7 +85,7 @@ async def next(self, interaction: discord.Interaction, _):
85
85
self .counter .label = f"{ self .current_page + 1 } /{ self .total_page_count } "
86
86
await interaction .response .edit_message (embed = self .pages [self .current_page ], view = self )
87
87
88
- @discord .ui .button (emoji = discord . PartialEmoji ( name = " \U000023ed " ) )
88
+ @discord .ui .button (label = ">>" , style = discord . ButtonStyle . blurple )
89
89
async def last (self , interaction : discord .Interaction , _ ):
90
90
if interaction .user != self .ctx .user :
91
91
embed = discord .Embed (description = "You cannot control this pagination because you did not execute it." ,
0 commit comments